Quelle est la différence entre iface eth0 inet manual et iface eth0 inet static?

20

Quelle est la difference entre iface eth0 inet manualet iface eth0 inet static?

Merci

Wang Xiaoyu
la source

Réponses:

17

iface eth0 inet static: Définit une adresse IP statique pour eth0

iface eth0 inet manual: Pour créer une interface réseau sans aucune adresse IP. Généralement utilisé par les interfaces qui sont des membres de pont ou d'agrégation, ou sur lesquelles un périphérique VLAN est configuré

Pour plus d'informations, lisez:

Jetez un oeil sur le fichier /usr/share/doc/ifupdown/examples/network-interfaces.gz, vous pouvez en savoir plus sur le manuel et certains cas à utiliser:

# 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
Maythux
la source
2
Explication plus détaillée ici .
Pablo Bianchi