サンプル RIPng ルーティング構成ファイル
任意コマンドは「!」を使ってコメントアウトします。コマンドを有効にするには、「!」を削除し、必要に応じて変数を変更します。
!! セクション 1: グローバル RIPng デーモン プロパティを構成します。
!! Enable RIPng daemon. Must be enabled for all RIPng configurations.
! router ripng
!!! セクション 2: インターフェイスとネットワークを構成します。
! Enable RIPng on interface(eth0).
! network eth0
! ! Enable RIPng on network (2000::/64)
! network 3344::/64
! ! Set RIPng to receive-only on interface (eth2).
! passive-interface eth2
!! セクション 3: ピアに RIPng ルートを再分配し、OSPFv3 または BGP ルートを RIPng ルーティング テーブルに挿入します。
!! Share route of last resort (default route) from kernel routing table with RIPng peers.
! default-information originate
!! Redistribute firewall static routes to RIPng peers.
! redistribute static
!! Set route maps (MAPNAME) to restrict route redistribution in Section 4.
! Redistribute routes from all interfaces to RIPng peers or with a route map filter (MAPNAME).
! redistribute connected
! redistribute connected route-map MAPNAME
!! Redistribute routes from OSPFv3 to RIPng or with a route map filter (MAPNAME).
! redistribute ospf6
! redistribute ospf6 route-map MAPNAME
!! Redistribute routes from BGP to RIPng or with a route map filter (MAPNAME).
! redistribute bgp
! redistribute bgp route-map MAPNAME
!! セクション 4: ルート マップとアクセス リストを含むルート再分配フィルタを構成します。
!!Filter networks in incoming routing updates
! distribute-list LISTNAME in
!! Create an ipv6 access list to only allow network 3000::/64.
! ipv6 access-list LISTNAME permit 3000::/64
! ipv6 access-list LISTNAME deny any
!! Create a route map with name MAPNAME and allow with a priority of 10.
! route-map MAPNAME permit 10
! match interface eth1