我有一台 Cisco DPC3825 DOCSIS 3.0 网关路由器。我试图设置一个静态 IP,以便为 SSH 转发端口 22。我通过将 etc/network/interfaces 设置为此来实现此目的
auto eth0
iface eth0 inet static
address 192.168.1.178
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8 192.168.1.1
但是,我的路由器的 IP 是 192.168.0.1,因此它不允许我转发到 192.168.0.xxx 范围之外的任何 IP。因此,我将上述内容更改为
auto eth0
iface eth0 inet static
address 192.168.0.178
netmask 255.255.255.0
gateway 192.168.0.1
dns-nameservers 8.8.8.8 192.168.0.1
然而,这产生了一个奇怪的影响,我无法再从后面登录我的路由器。它只是说“无法连接,firefox 无法与 192.168.0.1 的服务器建立连接”。