Netctl でブリッジ接続
2015年2月17日 (火) 19:34時点におけるKusakata (トーク | 投稿記録)による版 (ページの作成:「Category:ネットワーク en:Bridge with netctl {{Related articles start}} {{Related|ネットワークブリッジ}} {{Related articles end}} == インスト...」)
関連記事
インストール
公式リポジトリから netctl パッケージをインストールしてください。
設定
/etc/netctl/examples/bridge
を/etc/netctl/bridge
にコピー。- 以下の例では、
br0
という名前のブリッジを作成して、実際の Ethernet アダプタeth0
と (任意) tap デバイスtap0
を接続します。もちろん、br0
,eth0
,tap0
は必要に応じて編集してください。
/etc/netctl/bridge
Description="Example Bridge connection" Interface=br0 Connection=bridge BindsToInterfaces=(eth0 tap0) IP=dhcp
- 以下の例では
br0
という名前の静的なブリッジを作成して、実際の Ethernet アダプタeth0
を接続します。必要に応じてInterface
,BindsToInterfaces
,Address
,Gateway
を編集してください。
/etc/netctl/bridge
Description="Example Bridge connection" Interface=br0 Connection=bridge BindsToInterfaces=(eth0) IP=static Address='192.168.10.20/24' Gateway='192.168.10.200' ## Ignore (R)STP and immediately activate the bridge SkipForwardingDelay=yes