Linux网络参数的修改

网卡eth0    
1. IP修改为 102.168.0.1   掩码 255.255.255.0 
ifconfig eth0 102.168.0.1 netmask 255.255.255.0 


2. 网关修改为 102.168.0.254 
route add default gw 102.168.0.254 


3. Linux命令行修改dns 
echo "nameserver 202.202.202.20 ">> /etc/resolv.conf 

4. mac
命令是:
ifconfig eth0 down
修改 MAC 地址,这一步较 Windows 中的修改要简单。
命令是:
ifconfig eth0 hw ether 00:AA:BB:CC:DD:EE
重新启用网卡
ifconfig eth0 up

网卡的 MAC 地址更改就完成了


//-----------------------------------------------------

参考:

http://blog.163.com/lixiaohao330@126/blog/static/137009368201112223531256/

http://nc.mofcom.gov.cn/news/17643676.html

你可能感兴趣的:(linux,windows,网络,UP)