如何在 Debian 上正确设置此有线互联网连接?

如何在 Debian 上正确设置此有线互联网连接?

我需要为我的 Debian Jessie 安装创建新的网络设置,因为路由器坏了之后我直接插入主网线后它似乎不再工作了。初始设置在操作系统安装期间自动创建。

该 ISP 仅为 Windows 和 Mac OS 提供技术支持。

我设法在运行于 Virtual Box 的 Windows 7 操作系统上获得了一个有效的连接,我只是在创建新的宽带连接时提供了用户和密码。我无法在 Debian 上做到这一点,因为我不知道哪里出了问题,我没有网络技能,尝试了针对其他情况给出的各种建议都没有帮助,甚至可能弊大于利。例如,当尝试从 GUI 创建新的 VPN/DSL 连接时,我只能选择提供一个文件进行设置,而我没有这样的文件。因此,我尝试使用 来绕过它nm-connection-editor,但是我在终端中收到大量警告,并且以这种方式创建的连接在我尝试打开它时就关闭了。此外,许多教程都是从使用 开始的pppoeconf,但我明白了bash: pppoeconf: command not found。要使用 apt-get,我首先需要连接,如果以前没有 也可以连接pppoeconf,那么现在为什么无法连接呢?

这是我在 Windows 中使用 ipconfig 得到的结果:

Windows IP Configuration


PPP adapter Broadband Connection:

   Connection-specific DNS Suffix  . :
   IPv6 Address. . . . . . . . . . . : 2a02:2f0d:1af:ffff::4f74:406b
   Link-local IPv6 Address . . . . . : fe80::4f74:406b%18
   IPv4 Address. . . . . . . . . . . : 79.116.64.107
   Subnet Mask . . . . . . . . . . . : 255.255.255.255
   Default Gateway . . . . . . . . . : fe80::1%18
                                       0.0.0.0

Ethernet adapter Local Area Connection:

   Connection-specific DNS Suffix  . :
   Link-local IPv6 Address . . . . . : fe80::a975:71b:e3f0:ad2b%11
   Autoconfiguration IPv4 Address. . : 169.254.173.43
   Subnet Mask . . . . . . . . . . . : 255.255.0.0
   Default Gateway . . . . . . . . . :

Tunnel adapter isatap.{0CAC39B9-EEC5-4D41-8D27-E9460A997045}:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :

Tunnel adapter isatap.{628C2C2B-2578-435A-9C9A-EEC36786D9A1}:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :

下面是我在 Debian 中使用 ifconfig 得到的结果:

eth0      Link encap:Ethernet  HWaddr 00:25:64:5a:0d:2d  
          inet6 addr: fe80::225:64ff:fe5a:d2d/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:67594 errors:0 dropped:0 overruns:0 frame:0
          TX packets:56080 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:60232104 (57.4 MiB)  TX bytes:6649205 (6.3 MiB)
          Interrupt:18 

eth0:avahi Link encap:Ethernet  HWaddr 00:25:64:5a:0d:2d  
          inet addr:169.254.4.17  Bcast:169.254.255.255  Mask:255.255.0.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          Interrupt:18 

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:3573 errors:0 dropped:0 overruns:0 frame:0
          TX packets:3573 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:783594 (765.2 KiB)  TX bytes:783594 (765.2 KiB)

我的 /etc/network/interfaces 文件:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

相关内容