Iface eth0 इनसेट मैनुअल और iface eth0 इनसेट स्टैटिक में क्या अंतर है?


जवाबों:


17

iface eth0 inet static: Eth0 के लिए एक स्थिर IP पता परिभाषित करता है

iface eth0 inet manual: बिना आईपी एड्रेस के नेटवर्क इंटरफेस बनाना। आमतौर पर उन इंटरफेसों द्वारा उपयोग किया जाता है जो पुल या एकत्रीकरण सदस्य हैं, या उन पर एक वीएलएएन डिवाइस कॉन्फ़िगर किया गया है

अधिक जानकारी के लिए पढ़ें:

फ़ाइल पर एक नज़र डालें /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
अधिक विस्तृत विवरण यहाँ
पाब्लो बियांची
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.