Qualcuno può spiegare l'output di ifconfig in Mac OS X?


51

Quando eseguo ifconfig sul mio Mac, ottengo un elenco delle seguenti interfacce:

lo0
gif0
stf0
en0
fw0
en1
vmnet8
vmnet1

Mi chiedo quale sia ciascuna interfaccia. Inoltre, quale di queste è l'interfaccia IP? Non vedo eth0 da nessuna parte, che presumo sia il nome dell'interfaccia standard usato dai sistemi Linux.

Risposte:


63

Mi chiedo quale sia ciascuna interfaccia.

  • lo0 = loopback
  • gif0 = Software Network Interface
  • stf0 = 6to4 interfaccia tunnel
  • en0 = Ethernet 0
  • fw0 = Firewire
  • en1 = Ethernet 1
  • vmnet8 = Interfaccia virtuale
  • vmnet1 = Interfaccia virtuale

Qualcosa del genere.

Inoltre, quale di queste è l'interfaccia IP?

Non esiste "l'interfaccia" IP da molti anni. Tutti possono avere IPv4 e / o IPv6 configurati e funzionanti. Quello predefinito da utilizzare è definito dalla tabella di routing (in particolare la voce defaulto 0.0.0.0, ::/0).

Non vedo eth0 da nessuna parte, che presumo sia il nome dell'interfaccia standard usato dai sistemi Linux.

Mac OS X è BSD, non Linux.


3
+1 bella risposta. Inoltre, a volte vedrai ppp0, che viene utilizzato anche per alcuni tunnel VPN.
Mark E. Haase,

5
Inoltre, il client VPN osx crea utun0un'interfaccia.
Dan Pritts,

33

È possibile visualizzare i nomi utilizzati nelle Preferenze di Sistema per alcuni dei dispositivi eseguendo networksetup -listallhardwareports:

Hardware Port: HUAWEIMobile-
Device: HUAWEIMobile-Modem
Ethernet Address: N/A

Hardware Port: Bluetooth DUN
Device: Bluetooth-Modem
Ethernet Address: N/A

Hardware Port: Ethernet
Device: en0
Ethernet Address: a8:20:66:31:95:57

Hardware Port: MBBEthernet
Device: en5
Ethernet Address: 00:1e:10:1f:00:01

Hardware Port: Wi-Fi
Device: en1
Ethernet Address: 8c:2d:aa:33:03:e9

Hardware Port: Bluetooth PAN
Device: en4
Ethernet Address: 8c:2d:aa:33:03:ea

Hardware Port: Thunderbolt 1
Device: en2
Ethernet Address: 32:00:1b:25:92:c0

Hardware Port: Thunderbolt 2
Device: en3
Ethernet Address: 32:00:1b:25:92:c1

Hardware Port: Thunderbolt Bridge
Device: bridge0
Ethernet Address: N/A

VLAN Configurations
===================

networksetup -listnetworkserviceorder produce un output simile ma visualizza "un elenco di servizi di rete nell'ordine in cui vengono contattati per una connessione" o mostra i servizi nello stesso ordine delle Preferenze di Sistema.

networksetupnon include dispositivi come i dispositivi vmnet1e vmnet8utilizzati da VMWare.

Puoi visualizzare ulteriori informazioni sui endispositivi eseguendo defaults read /Library/Preferences/SystemConfiguration/NetworkInterfaces.plist:

{
    Interfaces =     (
                {
            Active = 1;
            "BSD Name" = en0;
            IOBuiltin = 1;
            IOInterfaceNamePrefix = en;
            IOInterfaceType = 6;
            IOInterfaceUnit = 0;
            IOMACAddress = <a8206631 9557>;
            IOPathMatch = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPP/GIGE@0/BCM5701Enet/en0";
            SCNetworkInterfaceInfo =             {
                UserDefinedName = Ethernet;
            };
            SCNetworkInterfaceType = Ethernet;
        },
                {
            Active = 1;
            "BSD Name" = en1;
            IOBuiltin = 1;
            IOInterfaceNamePrefix = en;
            IOInterfaceType = 6;
            IOInterfaceUnit = 1;
            IOMACAddress = <8c2daa33 03e9>;
            IOPathMatch = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP04@1C,3/IOPP/ARPT@0/AirPort_Brcm4360/en1";
            SCNetworkInterfaceInfo =             {
                UserDefinedName = "Wi-Fi";
            };
            SCNetworkInterfaceType = IEEE80211;
        },
                {
            Active = 1;
            "BSD Name" = en2;
            IOBuiltin = 1;
            IOInterfaceNamePrefix = en;
            IOInterfaceType = 6;
            IOInterfaceUnit = 2;
            IOMACAddress = <32001b25 92c0>;
            IOPathMatch = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP05@1C,4/IOPP/UPSB@0/IOPP/DSB0@0/IOPP/NHI0@0/AppleThunderboltHAL/AppleThunderboltNHIType2/IOThunderboltController/IOThunderboltLocalNode/AppleThunderboltIPService/AppleThunderboltIPPort/en2";
            SCNetworkInterfaceInfo =             {
                UserDefinedName = "Thunderbolt 1";
            };
            SCNetworkInterfaceType = Ethernet;
        },
                {
            Active = 1;
            "BSD Name" = en3;
            IOBuiltin = 1;
            IOInterfaceNamePrefix = en;
            IOInterfaceType = 6;
            IOInterfaceUnit = 3;
            IOMACAddress = <32001b25 92c1>;
            IOPathMatch = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP05@1C,4/IOPP/UPSB@0/IOPP/DSB0@0/IOPP/NHI0@0/AppleThunderboltHAL/AppleThunderboltNHIType2/IOThunderboltController/IOThunderboltLocalNode/AppleThunderboltIPService/AppleThunderboltIPPort/en3";
            SCNetworkInterfaceInfo =             {
                UserDefinedName = "Thunderbolt 2";
            };
            SCNetworkInterfaceType = Ethernet;
        },
                {
            "BSD Name" = en4;
            IOBuiltin = 0;
            IOInterfaceNamePrefix = en;
            IOInterfaceType = 6;
            IOInterfaceUnit = 4;
            IOMACAddress = <8c2daa33 03ea>;
            IOPathMatch = "Migrated_From: IOService:/IOResources/IOUserEthernetResource/IOUserEthernetResourceUserClient/IOUserEthernetController/en2";
            SCNetworkInterfaceInfo =             {
                UserDefinedName = "Bluetooth PAN";
            };
            SCNetworkInterfaceType = Ethernet;
        },
                {
            Active = 1;
            "BSD Name" = en5;
            IOBuiltin = 0;
            IOInterfaceNamePrefix = en;
            IOInterfaceType = 6;
            IOInterfaceUnit = 5;
            IOMACAddress = <001e101f 0001>;
            IOPathMatch = "IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/EHC1@1D/AppleUSBEHCI/HUAWEI Mobile@1d110000/IOUSBInterface@4/HuaweiDataCardECMData/en5";
            SCNetworkInterfaceInfo =             {
                "USB Product Name" = "HUAWEI Mobile";
                UserDefinedName = MBBEthernet;
                idProduct = 5382;
                idVendor = 4817;
            };
            SCNetworkInterfaceType = Ethernet;
        }
    );
    Model = "iMac13,1";
}

Oltre a quanto detto da iklier in merito al nome del dispositivo per il Wi-Fi en0nei laptop senza una porta ethernet e en1nei Mac con una singola porta ethernet, è presente anche en2in almeno alcuni Mac Pro con due porte ethernet.


15

Sui vecchi portatili Apple, en0 è Ethernet ed en1 è Airport (WiFi).

I vecchi Mac Pro, con jack Ethernet, avranno en3 e avranno due schede di rete Ethernet e Airport (WiFi).

Nei nuovi MacBook senza jack Ethernet, en0 è Airport (WiFi).

vmnet # è generalmente creato da VM (Parallels / VMWare)

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.