标签:
本文描述在Ubuntu12.04环境下配置桥接网络的方法,其实这个算是比较简单的,权当做是给自己做个总结吧。
1 auto lo 2 3 iface lo inet loopback
这边的设置是本地回路。
在后面加上:
1 auto eth0 2 3 iface eth0 inet static 4 5 address 192.168.1.230(ip地址) 6 7 netmask 255.255.255.0(子网掩码) 8 9 gateway 192.168.1.1(网关)
其中eth0就是电脑的网卡,如果电脑有多块网卡,比如还会有eth1,都可以在这里进行设置。iface eth0 inet 设置为dhcp是动态获取IP,设置为static则用自定义的IP地址。这边要自定义IP地址,所以选择static选项。
1 sudo /etc/init.d/networking restart
重启好后,用ifconfig看下eth0,是不是改成自己需要的IP地址了。
ip设置好后,如果直接ping www.baidu.com会发现ping不通,因为dns还没设置,编辑/etc/resolv.conf,加上dns服务器地址。
1 nameserver 8.8.8.8 2 3 nameserver 8.8.4.4
这两个是Google提供的免费DNS服务器的IP地址。
标签:
原文地址:http://www.cnblogs.com/jangfei/p/5058133.html