web-dev-qa-db-ja.com

/ etc / network / interfacesのセットアップ

静的IPを使用してOptimumビジネスへの接続をセットアップしています

  • IPアドレス47.x.x.62
  • デフォルトゲートウェイ47.x.x.61
  • サブネットマスク255.255.255.252
  • プライマリDNSサーバー167.x.x.138
  • Seconday DNSサーバー167.x.x.4

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
1
Gary

あなたの質問は少し不明瞭ですが、カスタムDNSを設定したい場合、いくつかの方法でそれを行うことができます。

  1. interfacesファイルにdns-nameservers {IP}を追加します。
  2. またはnameserver {IP}/etc/resolv.confに追加します(これは永続的な解決策ではありません)。
1
AsenM