ifdown bond0:0このbond0を倒す?

ifdown bond0:0このbond0を倒す?

このファイルを使用して、 bond0 インターフェイスにインターフェイスエイリアスを設定しました。

/etc/sysconfig/network-scripts/ifcfg-bond0:0

これを含む

DEVICE=bond0:0
IPADDR=10.2.3.60
BOOTPROTO=static
ONBOOT=yes
NETMASK=255.255.255.0

私は

$ ifup bond0:0 

すべてがうまく機能し、pingできます。しかし、私は

$ ifdown bond0:0

両方ともbond0倒すbond0:0

これはバグのように見えますが、おそらく私が何か間違っているようです。bond0:0持参せずにどのようにダウンロードできますかbond0

ベストアンサー1

bond0:0エイリアス IP アドレスの割り当てに使用する方法を検討してください。Linuxカーネルは現在廃止されました。

IP-Aliasing:
============

IP-aliases are an obsolete way to manage multiple IP-addresses/masks
per interface. Newer tools such as iproute2 support multiple
address/prefixes per interface, but aliases are still supported
for backwards compatibility.

An alias is formed by adding a colon and a string when running ifconfig.
This string is usually numeric, but this is not a must.

エイリアスを削除/キャンセルする正しい構文は、次をifconfig使用することです。

$ ifconfig bond0:0 down

ipiproute2のコマンドを使用して同じことを行うこともできると思います。

$ ip link set bond0:0 down

おすすめ記事