ifconfig: endereço incorreto '--apbridge'

3

Eu preciso configurar as interfaces de rede no meu roteador OpenWRT. por isso preciso alterar algumas opções no arquivo / etc / config / network. especificamente eu quero remover a conexão de ponte . Eu tentei cada um dos seguintes comandos no meu shell:

ifconfig lan -apbridge
ifconfig eth0 -apbridge

cada saída do comando é:

ifconfig: bad address '-apbridge'

Eu também tentei isso:

ifconfig lan type -apbridge
ifconfig eth0 type -apbridge

cada saída do comando é:

ifconfig: bad address 'type'

Eu sei que posso usar apenas o editor nano e remover a opção do arquivo diretamente, mas no meu caso isso não é prático. Eu preciso remover a conexão de ponte da linha de comando.

como posso fazer isso .. obrigado

    
por McLan 06.05.2014 / 14:17

1 resposta

1

Experimente brctl ...

root@ap5:~# brctl --help
BusyBox v1.19.4 (2013-03-14 11:28:31 UTC) multi-call binary.

Usage: brctl COMMAND [BRIDGE [INTERFACE]]

Manage ethernet bridges

Commands:
        show                    Show a list of bridges
        addbr BRIDGE            Create BRIDGE
        delbr BRIDGE            Delete BRIDGE
        addif BRIDGE IFACE      Add IFACE to BRIDGE
        delif BRIDGE IFACE      Delete IFACE from BRIDGE
        setageing BRIDGE TIME           Set ageing time
        setfd BRIDGE TIME               Set bridge forward delay
        sethello BRIDGE TIME            Set hello time
        setmaxage BRIDGE TIME           Set max message age
        setpathcost BRIDGE COST         Set path cost
        setportprio BRIDGE PRIO         Set port priority
        setbridgeprio BRIDGE PRIO       Set bridge priority
        stp BRIDGE [1/yes/on|0/no/off]  STP on/off

root@ap5:~# brctl show
bridge name     bridge id               STP enabled     interfaces
br-lan          8000.deadc0decafe       no              eth0
                                                        wlan0

... usando 'delif' você pode desconectar interfaces indesejadas da bridge.

Se as versões importarem: Estas linhas são da caixa "ATITUDE ADJUSTMENT (12.09, r36088)".

    
por 06.05.2014 / 14:55

Tags