Python脚本给DHCP服务器绑定IP和MAC

本文介绍了一个用于批量配置DHCP服务器的Python脚本。该脚本读取包含IP地址和MAC地址配对的文件,并向DHCP配置文件中添加主机条目。每条记录包括指定的MAC地址和对应的固定IP地址。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#!/usr/bin/python
import os,sys
import linecache
def config_dhcp(ip_mac_list,dhcp_conf):
    all_file = [ x.replace('\n','').split('\t') for in linecache.getlines(ip_mac_list)]
    dhcp_file = open(dhcp_conf,'a')
    for items in all_file:
        print >>dhcp_file,'host %s  {' %  items[0]
        print >>dhcp_file,''
        print >>dhcp_file,'       hardware ethernet %s;'  % items[2]
        print >>dhcp_file,'       fixed-address %s;' %  items[1]
        print >>dhcp_file,'}'
        print >>dhcp_file,''
    dhcp_file.close()
    return 'Config OK!!!!!'
if __name__ == '__main__':
                                           
    print  config_dhcp(sys.argv[1],sys.argv[2])
###################################
#sys.argv[0]  hostname   IP  MAC
###################################
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值