如何通过以太网将我的网络(医院网络)共享到我的无头 R-pi?

如何通过以太网将我的网络(医院网络)共享到我的无头 R-pi?

我的笔记本电脑通过 WLAN 卡连接到互联网,我必须使用临时代码登录网络。当前运行的是 Ubuntu 16.04。因此,我想通过以太网接口为 r-pi 设置一个临时网络,并能够通过 ssh 进入它。我已将 Raspbian 放在 pi 上,并启用了 ssh,但我不知道它的 IP 地址是什么,因为我的操作系统未配置为 DHCP 服务器。不知道接下来该怎么做。有人知道我该如何实现吗?任何帮助都将不胜感激 :)

答案1

首先获取网关的地址。其格式应为192.168.AAA.BBB

在你的 Ubuntu 机器上输入以下命令:

echo 1 | sudo tee /proc/sys/net/ipv4/ip_forward > /dev/null
sudo iptables -P FORWARD ACCEPT
sudo iptables -A POSTROUTING -t nat -j MASQUERADE -s 192.168.2.0/24
sudo ip route del default
sudo ip route add default via 192.168.AAA.BBB

在你的 Raspberry Pi 上:

按照以下方式更改文件/etc/network/interfaces

iface eth0 inet static
            address 192.168.2.201
            netmask 255.255.255.0
            gateway 192.168.2.1

编辑/etc/dhcp/dhcpd.conf

ddns-update-style none;

option domain-name "domain.local";
option domain-name-servers 192.168.2.201;

default-lease-time 60;
max-lease-time 72;

# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;

# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;

# wpad
option local-proxy-config code 252 = text;

# A slightly different configuration for an internal subnet.
subnet 192.168.2.0 netmask 255.255.255.0 {
  range 192.168.2.1 192.168.2.2;
  option routers 192.168.2.201;
  option local-proxy-config "http://192.168.2.201/wpad.dat";
}

现在您应该能够通过以太网接口进行 ssh。在 ssh 会话中,在您的 PI 上输入以下命令:

$ sudo ip route del default
$ sudo ip route add default via 192.168.2.2
$ sudo sh -c "echo 'nameserver 192.168.AAA.BBB' > /etc/resolv.conf" 

192.168.AAA.BBB用你的 WLAN 网络的网关替换。

您的 RPi 现在应该可以连接互联网了。

相关内容