我尝试使用NAT在我的Raspberry Pi B +上将eth0转发到wlan0 iptables
使用以下命令:
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -A FORWARD --in-interface eth0 -j ACCEPT
iptables --table nat -A POSTROUTING --out-interface wlan0 -j MASQUERADE
但是当我尝试时,它没有用 ping google.com
我有 ping: unknown host google.com
在我的笔记本电脑上,它连接到我的Raspberry Pi B +上的eth0端口。在我的Raspberry Pi B +上,我只能从wlan0正常上网。
我的wifi网络上的IP地址看起来是这样的:192.168.1.xxx。
如何将eth0转发给wlan0?
host not reachable
On my Raspberry Pi B+, I just have normal internet access from wlan0.
“
ip route show
。