ubuntu 下设置双网卡 实现内外网访问



基本情况:

笔记本有无线网卡与有线网卡共两块网卡,欲通过无线网卡练路由器上网,有线网卡与本地设备进行测试通信;
无线网卡设置为DHCP,有线网卡设置为手动配置

实现方式:
手动添加默认网关为无线网卡的默认网卡,即外网数据通过默认网关转发



配置情况:


#终端中输入以下命令行

sudo vi /etc/network/interfaces

#在vi中输入以下配置

auto lo
iface lo inet loopback

# The primary network interface
auto wlan0
iface wlan0 inet dhcp


#the second eth0
auto eth0
iface eth0 inet static
address 192.168.10.1

#在终端中重新载入网卡配置文件

sudo /etc/init.d/networking restart

#手动测试两个网卡能否完成预定功能,如果不行,手动添加默认网关(10.180.32.1),删除内网的网关(192.168.10.2 )

sudo route add default gw 10.180.32.1  dev wlan0
sudo route del default gw 192.168.10.2  dev eth0

实现情况:

最后就可以实现无线网卡上网,以太网卡ping通


你可能感兴趣的:(linux)