我在服务器配置中设置了raspberry pi B,它通过带有USB加密狗的Wifi成功连接到互联网.
我的另一个pi(A)一直位于车库的楼下,从以太网电缆连接到我的调制解调器.
虽然不得不跑下楼来修改pi或断开连接,但是每天多次这样做会有点令人沮丧.
我想知道我的B是否可以通过以太网分享其与我的A的wifi连接.然后,A将使用以太网电缆连接到B以太网端口.
如果需要,我还有一个10/100开关.
解决方法:
根据您在使用wifi和以太网的覆盆子pi上运行的内容,您可以安装iptables:
然后配置ip转发:
echo 1 > /proc/sys/net/ipv4/ip_forward
sysctl -w net.ipv4.ip_forward=1 # to make ip_forwarding persistent across reboots
以及用于伪装传出流量的iptables规则
iptables -t nat -A POSTROUTING -s <your-ethernet-ip-subnet> -j MASQUERADE
iptables-save # to make the iptables rule persistent across reboots
使用专用内部子网进行以太网连接.例如,如果您的wifi使用192.168.1.0/24,则在您的以太网连接上使用例如192.168.2.0/24.