增加 Linux 通过 Windows 桥接上网.
Signed-off-by: rick.chan <cy@sina.com>
This commit is contained in:
parent
179ceff874
commit
551be8720d
|
@ -245,10 +245,28 @@ ethtool -s <netIf> speed <speed> duplex <full/half> autoneg off
|
|||
* duplex:全双工/半双工
|
||||
* autoneg:自适应开关
|
||||
|
||||
## 6. 内部参考关键字
|
||||
## 6. Linux 通过 Windows 桥接上网
|
||||
|
||||
### 6.1. Windows 通过 Wifi 上网,通过有线连接 Linux 设备
|
||||
|
||||
将 Windows 与 Linux 连接的网卡设置为自动 IP 地址,选定网卡与 Wifi 的 WLAN,点击右键选择桥接。
|
||||
|
||||
桥接后 Windows 可能无法上网,此时重新连接 Wifi 即可。
|
||||
|
||||
将 Linux 设定为固定 IP 地址,地址段与 Windows 的 WLAN 保持一致(如果 Windows 的 WLAN 地址为:192.168.2.230,则将 Linux 设定为 192.168.2.200,IP 地址不能与局域网中的其他设备重复,如不确定,可设置路由器中自动分配地址池以外的地址)
|
||||
|
||||
设置 Linux 的默认路由,并将:
|
||||
|
||||
```bash
|
||||
nameserver 114.114.114.114
|
||||
```
|
||||
|
||||
添加到 /etc/resolv.conf 文件中。
|
||||
|
||||
## 7. 内部参考关键字
|
||||
|
||||
1. IPRoute2
|
||||
|
||||
## 7. 外部参考资料
|
||||
## 8. 外部参考资料
|
||||
|
||||
1. [Linux 路由表详解及 route 命令详解](https://blog.csdn.net/kikajack/article/details/80457841)
|
||||
|
|
Loading…
Reference in New Issue