Ubuntu Server 7.04手动配置(2)

$ sudo vi /etc/network/interfaces

eth0配置如下:

auto eth0

address 192.168.1.123

netmask 255.255.255.0

gateway 192.168.1.1

保存退出后,使用重启networking命令让新配置生效。

$ sudo /etc/init.d/networking restart

也可以通过如下命令重启网卡,让新配置生效,好处是不影响其他网络接口。

$ sudo ifdown eth0

$ sudo ifup eth0

如果只是要临时改变IP地址,则不用修改interface.只用ifconfig使用即可,不过当系统重启动后,系统后会恢复interfaces中的配置上。

$ sudo ifconfig eth0 192.168.1.111 netmask 255.255.255.0

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/915e2d9e1b4bcfae6fec2eadbbe19e93.html