静的IPを使用してOptimumビジネスへの接続をセットアップしています
Eth0(eno1)を静的IPに設定し、eth1(eno2)をネットワーク(LAN)に設定しようとしていますが、eno2は稼働していますが、eno1は稼働していません。
ネームサーバーに設定するコマンドを使用して提案を修正していないようです。
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eno1
#iface eno1 inet dhcp
iface eno1 inet static
address 47.x.x.62
netmask 255.255.255.252
gateway 47.x.x.61
# The primary network interface
auto eno2
#iface eno2 inet dhcp
iface eno2 inet static
address 192.168.1.5
netmask 255.255.255.0
gateway 192.168.1.1
あなたの質問は少し不明瞭ですが、カスタムDNSを設定したい場合、いくつかの方法でそれを行うことができます。
dns-nameservers {IP}
を追加します。nameserver {IP}
を/etc/resolv.conf
に追加します(これは永続的な解決策ではありません)。