[情報表示] の中の [LAN] で ONU の IP アドレスが確認できます。 [DHCPリース] で、現時点で払い出されてる IP アドレスを確認できます。 今回はまだ払い出されていない 192.168.1.254 を Cisco 1812J に割り当てることにします。
画像
Cisco 1812J 側の設定
シリアルケーブルの USB ポートを特定し Cisco 1812J に接続します。
guest@ubuntu:∼$ sudo dmesg | grep ttyUSB
[ 34.739950] usb 1-1.3.4: FTDI USB Serial Device converter now attached to ttyUSB0
[ 34.996889] usb 1-1.3.1: pl2303 converter now attached to ttyUSB1
guest@ubuntu:∼$ cu --speed 9600 --parity=none --line /dev/ttyUSB0
Connected.
Router1>
Router1(config)# interface Loopback 0
*Apr 6 12:39:06.171: %LINEPROTO-5-UPDOWN: Line protocol on Interface Loopback0, changed state to up
Router1(config-if)# ip address 192.168.192.168 255.255.255.0
Router1(config-if)# exit
次に、ONU に接続されているインターフェイス(FastEthernet 0)に 192.168.1.254 を割り当てます。 このインターフェイスから ONU にトラフィックを送信し、インターネットに通信します。
Router1(config)# interface FastEthernet 0
Router1(config-if)# ip address 192.168.1.254 255.255.255.0
Router1(config-if)# no shutdown
Router1(config-if)# exit
*Apr 6 12:42:33.035: %LINK-3-UPDOWN: Interface FastEthernet0, changed state to up
*Apr 6 12:42:45.419: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0, changed state to up
ルート情報を設定します。 テストとして Google DNS サーバー(8.8.8.8)にインターネット経由で通信します。 そのため、8.8.8.8 へのトラフィックを ONU(192.168.1.1) にルーティングすように設定します。
Router1(config)# ip route 8.8.8.8 255.255.255.255 192.168.1.1
Router1(config)# exit
*Apr 6 12:44:39.887: %SYS-5-CONFIG_I: Configured from console by console
ただ、このままだとルートテーブルに反映されません。
Router1# show ip route
Default gateway is not set
Host Gateway Last Use Total Uses Interface
ICMP redirect cache is empty
ip routing コマンドを実行してルート設定を反映させます。
Router1# conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router1(config)# ip routing
Router1(config)# exit
*Apr 6 12:45:53.867: %SYS-5-CONFIG_I: Configured from console by console
Router1# show ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route
Gateway of last resort is not set
C 192.168.192.0/24 is directly connected, Loopback0
8.0.0.0/32 is subnetted, 1 subnets
S 8.8.8.8 [1/0] via 192.168.1.1
C 192.168.1.0/24 is directly connected, FastEthernet0
C 192.168.101.0/24 is directly connected, FastEthernet1