Ubuntu(桌面版 + 服务器)16.04:添加以太网网络(LAN)

Ubuntu(桌面版 + 服务器)16.04:添加以太网网络(LAN)

情况:

我有一台 PC 和一台服务器(不是虚拟机)。我对配置硬件完全陌生。我需要使用 LAN 电缆设置以太网网络。以太网电缆直接从 PC 连接到服务器(无需以太网交换机)。

电脑信息:

Operating system: Ubuntu 桌面 16.04.4
Architecture:64 位 (AMD64)
Connected to the Internet (wi-fi):是 (wi-fi)
Network interfaces ($ ipconfig -a):

enp4s0    Link encap:Ethernet  HWaddr 90:2b:34:18:80:37  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

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:3872 errors:0 dropped:0 overruns:0 frame:0
          TX packets:3872 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:283996 (283.9 KB)  TX bytes:283996 (283.9 KB)

Network card ($ lspci | egrep -i --color 'network|ethernet'):

04:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 06)


服务器信息:

Model: HP ProLiant DL580 G7全手册
Operating system: Ubuntu 服务器 16.04.4
Architecture:64 位 (AMD64)
Connected to the Internet (wi-fi):

问题:

如何在服务器和 PC 之间设置以太网?
是否有任何与规格我的服务器上有吗?

谢谢您的帮助

答案1

您需要为两台机器静态分配 IP 地址。

电脑:192.168.10.1 255.255.255.0

服务器:192.168.10.2 255.255.255.0

对于 headles Ubuntu 服务器网络配置,你需要编辑 /etc/network/interfaces 有用的文章这里 服务器配置示例:

# The primary network interface 
auto enp4s0
iface enp4s0 inet static 
address 192.168.10.2 
netmask 255.255.255.0 
network 192.168.10.0 
broadcast 192.168.10.255 

您将无法使用此配置来访问互联网,因为需要通过您的 PC 来配置路由。

另外,虽然不太可能,但可能需要交叉电缆,因为您要将设备连接到另一个设备,尽管大多数现代 NIC 都会自动处理此问题。

注意:您可以使用 CIDR 192.168.10.0/30 限制地址范围,仅允许两个设备。

答案2

来自Bennett答案:

为了使用本地网络(以太网)连接两台机器,您需要:

1. 将 LAN 电缆连接到serverpersonal computer

2. 将网络接口添加到server

在你的终端中运行sudo nano /etc/network/interfaces

将此代码片段添加到文件中:

# My Ethernet interface
auto enp4s0f0
iface enp4s0f0 inet static
address 192.168.10.2
netmask 255.255.255.0
network 192.168.10.0
broadcast 192.168.10.255

使用快捷方式保存文件Ctrl + X

在您的终端中运行sudo reboot以设置新的配置。

3. 将网络接口添加到personal computer

在你的终端中运行sudo nano /etc/network/interfaces

将此代码片段添加到文件中:

# My Ethernet interface
auto enp4s0
iface enp4s0 inet static
address 192.168.10.1
netmask 255.255.255.0
network 192.168.10.0
broadcast 192.168.10.255

使用快捷方式保存文件Ctrl + X

在您的终端中运行sudo reboot以设置新的配置。

server4. 恭喜!和之间的以太网连接personal computer已设置

5.附言:

注意,你需要自己配置界面的代码片段。这是一个模板:

# My Ethernet interface
auto <interface_name>
iface <interface_name> inet static
address <ip_address>
netmask <netmask>
network <network_address>
broadcast <broadcast_address>

在哪里:

<interface_name>:接口名称(运行ifconfig -a以获取接口列表)
<ip_address>:接口的 IPv4 地址(模板:ip1.ip2.ip3.ip4
<netmask>:接口的网络掩码(通常为255.255.255.0
<network_address>:接口网络的 IPv4 地址(ip1.ip2.ip3.0
<broadcast_address>:接口广播的 IPv4 地址(ip1.ip2.ip3.255

相关内容