iface eth0 inet manualとiface eth0 inet staticの違いは何ですか?


20

違いは何であるiface eth0 inet manualとはiface eth0 inet static

ありがとう

回答:


17

iface eth0 inet static:eth0の静的IPアドレスを定義します

iface eth0 inet manual:IPアドレスをまったく使用せずにネットワークインターフェイスを作成します。通常、ブリッジまたはアグリゲーションメンバーであるか、VLANデバイスが構成されているインターフェイスで使用されます

詳細については、次を参照してください。

ファイルを見てください/usr/share/doc/ifupdown/examples/network-interfaces.gz、あなたはマニュアルと使用するいくつかのケースについての詳細を知ることができます:

# Set up an interface to read all the traffic on the network. This 
# configuration can be useful to setup Network Intrusion Detection
# sensors in 'stealth'-type configuration. This prevents the NIDS
# system to be a direct target in a hostile network since they have
# no IP address on the network. Notice, however, that there have been
# known bugs over time in sensors part of NIDS (for example see 
# DSA-297 related to Snort) and remote buffer overflows might even be
# triggered by network packet processing.
# 
# auto eth0
# iface eth0 inet manual
#   up ifconfig $IFACE 0.0.0.0 up
#       up ip link set $IFACE promisc on
#       down ip link set $IFACE promisc off
#       down ifconfig $IFACE down

# Set up an interface which will not be allocated an IP address by
# ifupdown but will be configured through external programs. This
# can be useful to setup interfaces configured through other programs,
# like, for example, PPPOE scripts.
#
# auto eth0
# iface eth0 inet manual
#       up ifconfig $IFACE 0.0.0.0 up
#       up /usr/local/bin/myconfigscript
#       down ifconfig $IFACE down

2
詳細な説明はこちら
パブロビアンキ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.