Ubuntu:永久修改IP 和 MAC地址

未修改过的/etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
auto eth1
iface eth1 inet dhcp
auto eth2
iface eth2 inet dhcp
auto ath0
iface ath0 inet dhcp
auto wlan0
iface wlan0 inet dhcp
修改过的/etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.200.99
netmask 255.255.255.0
gateway 192.168.200.100
auto eth1
iface eth1 inet dhcp
auto eth2
iface eth2 inet dhcp
auto ath0
iface ath0 inet dhcp
auto wlan0
iface wlan0 inet dhcp
启动项 /etc/init.d/networking
重启 sudo /etc/init.d/networking restart
---by(vangeldoro)
 

 
Ubuntu:永久修改MAC地址

方法一:

    1)编辑“/etc/init.d/rc.local”文件(sudo gedit /etc/init.d/rc.local

    2)在此配置文件的最后面加上如(
Ubuntu:修改网卡的MAC地址)的修改命令:
         ## 修改 eth0 的 MAC 地址
         sudo ifconfig eth0 down
         sudo ifconfig eth0 hw ether AA:BB:CC:DD:EE:FF
         sudo ifconfig eth0 up

方法二:

    1)编辑“/etc/network/interfaces”文件(sudo gedit /etc/network/interfaces

    2)在此配置文件中找到“iface eth0 inet static”行,在其后面加上“hwaddress ether AA:BB:CC:DD:EE:FF”,如何没有这一行,则自己手动完整添加

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
修改Ubuntu电脑的MAC地址,您可以按照以下步骤进行操作: 1. 打开终端:您可以通过按下Ctrl+Alt+T键或在应用程序菜单中搜索终端来打开终端。 2. 确定网络接口:在终端中输入以下命令,查看您要修改MAC地址的网络接口名称: ``` ifconfig ``` 在命令输出中,找到您要修改MAC地址的网络接口,通常是以"eth"或"wlan"开头的接口名称,如eth0、wlan0等。 3. 关闭网络接口:在终端中输入以下命令,以关闭您要修改MAC地址的网络接口(将接口名称替换为您实际使用的接口名称): ``` sudo ifconfig <interface_name> down ``` 例如,如果要关闭eth0接口,可以输入: ``` sudo ifconfig eth0 down ``` 4. 修改MAC地址:在终端中输入以下命令,以修改MAC地址(将interface_name替换为您实际使用的接口名称,XX:XX:XX:XX:XX:XX替换为新的MAC地址): ``` sudo ifconfig <interface_name> hw ether XX:XX:XX:XX:XX:XX ``` 例如,如果要将eth0接口的MAC地址修改为00:11:22:33:44:55,可以输入: ``` sudo ifconfig eth0 hw ether 00:11:22:33:44:55 ``` 5. 启用网络接口:在终端中输入以下命令,以启用您修改MAC地址的网络接口: ``` sudo ifconfig <interface_name> up ``` 例如,如果要启用eth0接口,可以输入: ``` sudo ifconfig eth0 up ``` 完成上述步骤后,您的Ubuntu电脑的MAC地址就被修改了。请注意,这些更改通常在重新启动后会被重置为默认值。如果您希望永久修改MAC地址,可以通过其他方法进行配置。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值