“ip rule show” não aceita argumentos

0

Estou tentando obter as regras de roteamento para um IP específico, mas o comando ip rule gera um erro. Isso não deveria funcionar como o add / del etc.? Pelo menos isso me parece da documentação.

$ ip rule list 192.168.1.100
"ip rule show" does not take any arguments.

Doc:

$ ip rule help
Usage: ip rule [ list | add | del | flush ] SELECTOR ACTION
SELECTOR := [ not ] [ from PREFIX ] [ to PREFIX ] [ tos TOS ] [ fwmark FWMARK[/MASK] ]
            [ iif STRING ] [ oif STRING ] [ pref NUMBER ]
ACTION := [ table TABLE_ID ]
          [ prohibit | reject | unreachable ]
          [ realms [SRCREALM/]DSTREALM ]
          [ goto NUMBER ]
          SUPPRESSOR
SUPPRESSOR := [ suppress_prefixlength NUMBER ]
              [ suppress_ifgroup DEVGROUP ]
TABLE_ID := [ local | main | default | NUMBER ]
    
por Anthony Hunt 04.07.2015 / 07:43

1 resposta

2

Aparentemente, não leva argumentos. Explicitamente documentado na página de manual .

ip rule show - list rules

This command has no arguments. The options list or lst are synonyms with show.

    
por 04.07.2015 / 10:14

Tags