赞
踩
1、首先用ssh工具finalshell登录linux
2、使用ifconfig 查看linux所有的网卡信息,并记下ip地址和mac地址
3、备份网卡信息配置文件
copy /etc/network/interfaces /etc/network/interfaces.bak
4、修改两个配置文件,并保存
allow-hotplug eth0
no-auto-down eth0
iface eth0 inet static
hwaddress ether 这里是mac地址
pre-up ifconfig eth0 hw ether 这里是mac地址
address 这里是IP地址
netmask 255.255.255.0
gateway 这里是网关地址
dns-nameservers 这里是dns服务器地址
pre-up /sbin/ifconfig eth0 mtu 3838
5、重启linux
6、再次连接linux,ifconfig查看ip地址,可以看到,ip地址固定不变。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。