Significado da saída do comando netstat -i no AIX

1

A saída do comando netstat-i no AIX 7.1 / AIX 7.2:

Name  Mtu   Network     Address            Ipkts Ierrs    Opkts Oerrs  Coll
en0   65390 link#2      e2.f9.3a.a8.fc.2     1205     0       71     0     0
en0   65390 10.140.128  nix-aix71-vs02-v     1205     0       71     0     0
lo0   16896 link#1                            108     0      108     0     0
lo0   16896 127         localhost             108     0      108     0     0
lo0   16896 localhost                         108     0      108     0     0
  • Por que existem duplicatas das interfaces na saída? Qual é o significado deles?
  • Por ex: Por que existem dois en0 com rede diferente e endereços diferentes?
  • O valor para Ipkts, Ierrs, Opkts, Oerrs e Coll será sempre igual se o nome da interface for o mesmo?
por Jay Joshi 24.04.2018 / 08:32

1 resposta

2

Tanto quanto me lembro, este é o nome da rede gerado automaticamente se você não nomear explicitamente essa rede. Você pode verificar no arquivo /usr/samples/tcpip/networks para arquivo de amostra sobre nomenclatura de rede no AIX.

Aqui está uma extração de Documentação do AIX (7.1) : Descrição

The /etc/networks file contains information about the known networks that comprise the DARPA Internet. Each network is represented by a single line in the networks file. The format for the entries in the networks file is:

Name Number Aliases

The fields are described as follows: Item Description Name Specifies an official network name. Number Specifies a network number. Aliases Specifies any unofficial names used for the network.

Items on a line are separated by one or more spaces or tab characters. Comments begin with a # (pound sign). Routines that search the networks file do not interpret characters from the beginning of a comment to the end of that line. Network numbers are specified in dotted-decimal notation. A network name can contain any printable character except a field delimiter, new-line character, or comment character.

The networks file is normally created from the official network database maintained at the Network Information Center (NIC). The file can be modified locally to include unofficial aliases or unknown networks.This file is part of TCP/IP in Network Support Facilities.

Edit: Então eles são a mesma interface, a mesma rota, a mesma rede

1

en0   65390 link#2      e2.f9.3a.a8.fc.2     1205     0       71     0     0

e 2

en0   65390 10.140.128  nix-aix71-vs02-v     1205     0       71     0     0
    
por 24.04.2018 / 09:03