Ubuntu 服务器 20.04 更改网络连接

Ubuntu 服务器 20.04 更改网络连接

开始熟悉 Ubuntu 服务器,在经历了几次混乱的设置尝试后,我实际上已经按照自己的意愿配置了一切,并且我迫不及待地想要拥有自己的家庭服务器。我有一台旧电脑用了几年了,我从来没有想过把它变成服务器。

无论如何,我目前放置服务器的地方没有以太网连接,所以我设置了 WiFi。但是,我现在想通过几个电力线适配器将其连接到以太网网络。这是否可行,而不会弄乱我的安装和我已经与服务器建立的任何连接?有没有办法让以太网连接与 WiFi 连接具有相同的 IP 地址?我的路由器有 DCHP,但我可以进入它并在需要时将其关闭。

我对 Linux 并不陌生,但也不是专家。如果有人能帮忙,我将不胜感激

@heynnema 感谢您的回复。这是您要求的信息。我现在已通过以太网连接,但速度不够快。有什么帮助吗?

sudo lshw -C 网络

 *-network
       description: Ethernet interface
       product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:02:00.0
       logical name: enp2s0
       version: 03
       serial: 00:25:64:86:47:57
       size: 100Mbit/s
       capacity: 1Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix vpd bus_master cap_list rom ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 duplex=full firmware=rtl_nic/rtl8168d-1.fw ip=192.168.1.237 latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
       resources: irq:18 ioport:e800(size=256) memory:fdfff000-fdffffff memory:fdff8000-fdffbfff memory:febe0000-febfffff

猫/etc/netplan/*.yaml

# This is the network config written by 'subiquity'
network:
  ethernets:
    enp2s0:
      dhcp4: true
  version: 2

猫/等/网络/接口

# ifupdown has been replaced by netplan(5) on this system.  See
# /etc/netplan for current configuration.
# To re-enable ifupdown on this system, you can run:
#    sudo apt install ifupdown

相关内容