【Cisco】初心者ネットワーク勉強会@秋葉原UDX
2020/11/23(火祝)9時00分から
FORSE 1
【Cisco】初心者ネットワーク勉強会@秋葉原UDX
FORSE
アジェンダ
0900~0905 今日出来るようになる事、自己紹介(チーム紹介)
0905~0930 EIGRPの構成確認、事前準備、物理結線
0930~0950 インターフェースの設定、対向へのping疎通
0950~0955 【5分講義】EIGRPとは
0955~1015 ダイナミックルーティングの設定
1015~1030 届かなかったセグメントへのping疎通確認と後片付け
時間があれば
CCNA試験対策(トラブル発生)講師がいたずらします
pingが失敗するので直してください
終わりの挨拶、追試の時間
参加いただきありがとうございます!!!
鈴木メモ
持ち物:スイッチ×2、PC×6、ルータ×6、LAN線×14、
シリアルケーブル×6
前提
https://www.infraexpert.com/study/study31.html
EIGRPをはじめからを、一読済み
今日、出来るようになる事
Cisco実機でEIGRPを組んだことがある
ShowコマンドでEIGRPが確認できる
CCNA試験対策のシミュレーション問題を回答できる
自己紹介(鈴木)
2
【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6
FORSE 3
PC6
192.168.60.6
WAN
RT6 RT1
RT2
RT3
RT4
RT5
.1
Fa0/0
.4
gi0/8gi0/2gi0/1
.2
gi0/8
.1
Fa0/0
.5
gi0/8gi0/2gi0/1
.3
gi0/8
.3
Fa0/0
.2
gi0/2
.1
Fa0/0
.1
gi0/2
.1
gi0/8
.6
gi0/8
.1
Fa0/0
PC5
192.168.50.5
PC4
192.168.40.4
gi0/3
gi0/3
192.168.123.0/24 192.168.40.0/24
192.168.50.0/24
192.168.16.0/24192.168.60.0/24
1Gbps
100Mbps
データセンター
セグメント(6階)
本社4階セグメント
本社1階セグメント
秋葉原UDXのシステム会社は
6階にデータセンター、4階に執務室、1階のレストラン
があり、それぞれをルータで接続しています
ビル内回線が利用出来ずに平日1日を無駄にしてしまったの
で、回線を冗⾧化する事にしました
SW2
SW1
【Cisco】ネットワーク基礎講座 ネットワークセグメント説明
FORSE 4
役割 IPアドレス 備考
支店ユーザ
セグメント
192.168.60.1 RT6のFa0/0
192.168.60.6 PC6
役割 IPアドレス 備考
支店ルータ
セグメント
192.168.16.1 RT1のgi0/8
192.168.16.6 RT6のgi0/8
役割 IPアドレス 備考
WAN
メイン回線
セグメント
172.16.12.1 RT1のgi0/2
172.16.12.2 RT2のgi0/2
役割 IPアドレス 備考
WAN
サブ回線
セグメント
172.16.13.1 RT1のfa0/2
172.16.13.3 RT2のfa0/2
役割 IPアドレス 備考
本社
ルータ
セグメント
192.168.123.2 RT2のgi0/8
192.168.123.3 RT3のgi0/8
192.168.123.4 RT4のgi0/8
192.168.123.5 RT5のGi0/8
役割 IPアドレス 備考
本社4階
セグメント
192.168.40.1 RT4のFa0/0
192.168.40.4 PC4
役割 IPアドレス 備考
本社1階
セグメント
192.168.50.1 RT5のFa0/0
192.168.50.5 PC5
【Cisco】ラボ#6 ルータの設定
FORSE 5
手順1
ルータは起動に時間がかかります
セットアップモードが起動したら、noと入力、もしくはcttl+c
手順2
メッセージが表示され、Enterキーを押します。Router>のプロンプトが表示されます
手順3
特権モードに移行します。Router#のプロンプトが表示されます
手順4
グローバルコンフィグレーションモードに移行し,ホスト名を変更します。Router(config)#が表示されます
手順5
telnetで他のルータにログイン出来るようにします
--- System Configuration Dialog ---
Would you like to enter the initial configuration dialog? [yes/no]:no
Press RETURN to get started!
Router>
Router>enable
Router#
Router#enable
Router#configure terminal
Router(config)#hostname RT1
Router(config)#no ip domain lookup
Router(config)#line console 0
Router(config-line)#logging synchronous
Router(config-line)#exec-timeout 60 0
Router(config-line)#end
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#line vty 0 4
Router(config-line)#password cisco
Router(config-line)#login
Router(config-line)#exit
Router(config)#enable password cisco
Router(config)#end
RT-10#
【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6-1
FORSE 6
手順1-1 インターフェースを設定する。
RT1 担当
手順2 物理結線を実施する
手順3
疎通確認を実施する。
RT1←→RT2(172.16.12.2)
RT1←→RT3(172.16.13.3)
RT1←→RT6(192.168.16.6)RT1#
RT1#configure terminal
RT1(config)#interface loopback0
RT1(config-if)#ip address 10.1.1.1 255.255.255.255
RT1(config-if)#exit
RT1(config)#interface gigabitEthernet 0/8
RT1(config-if)#ip address 192.168.16.1 255.255.255.0
RT1(config-if)#no shutdown
RT1(config-if)#exit
RT1(config)#interface vlan 312
RT1(config-if)#ip address 172.16.12.1 255.255.255.0
RT1(config-if)#no shutdown
RT1(config-if)#interface gigabitEthernet 0/2
RT1(config-if)#switchport access vlan 312
RT1(config-if)#exit
RT1(config)#interface fastEthernet 0/0
RT1(config-if)#ip address 172.16.13.1 255.255.255.0
RT1(config-if)#no shutdown
RT1(config-if)#exit
RT1#ping 192.168.16.6
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.16.6, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/1 ms
RT1#
RT1#ping 172.16.12.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.16.12.2, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/0 ms
RT1#ping 172.16.13.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.16.13.3, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/1 ms
RT1#
【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6-2
FORSE 7
手順1-2
RT2 担当
手順2
物理結線を実施する
SW1も物理結線する
手順3
疎通確認を実施する。
RT2←→RT1(172.16.12.1)RT2←→RT3(192.168.123.3)
RT2←→RT4(192.168.123.4)RT2←→RT5(192.168.123.5)
RT2#
RT2#configure terminal
RT2(config)#interface loopback0
RT2(config-if)#ip address 10.2.2.2 255.255.255.255
RT2(config-if)#exit
RT2(config)#interface gigabitEthernet 0/8
RT2(config-if)#ip address 192.168.123.2 255.255.255.0
RT2(config-if)#no shut
RT2(config-if)#exit
RT2(config)#interface vlan 312
RT2(config-if)#ip address 172.16.12.2 255.255.255.0
RT2(config-if)#no shutdown
RT2(config-if)#interface gigabitEthernet 0/2
RT2(config-if)#switchport access vlan 312
RT2(config-if)#exit
RT2#ping 172.16.12.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.16.12.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms
RT2#ping 192.168.123.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.123.3, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 0/2/8 ms
RT2#ping 192.168.123.4
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.123.4, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/0 ms
RT2#ping 192.168.123.5
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.123.5, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/0 ms
【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6-3
FORSE 8
手順1-3
RT3 担当
手順2
物理結線を実施する
SW2も物理結線する
手順3疎通確認を実施する。
RT3←→RT1(172.16.13.1)RT3←→RT2(192.168.123.2)
RT3←→RT4(192.168.123.4)RT3←→RT5(192.168.123.5)
RT3#
RT3#configure terminal
RT3(config)#interface loopback0
RT3(config-if)#ip address 10.3.3.3 255.255.255.255
RT3(config-if)#exit
RT3(config)#interface gigabitEthernet 0/8
RT3(config-if)#ip address 192.168.123.3 255.255.255.0
RT3(config-if)#no shut
RT3(config-if)#exit
RT3(config)#interface fastEthernet 0/0
RT3(config-if)#ip address 172.16.13.3 255.255.255.0
RT3(config-if)#no shutdown
RT3(config-if)#exit
RT3>ping 172.16.13.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.16.13.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/0 ms
RT3>ping 192.168.123.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.123.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms
RT3>ping 192.168.123.4
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.123.4, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/2 ms
RT3>ping 192.168.123.5
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.123.5, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/2 ms
【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6-4
FORSE 9
手順1-4
RT4 担当
手順2
物理結線を実施する
PCを設定する
IP 192.168.40.4
サブネット 255.255.255.0
デフォルトゲートウェイ 192.168.40.1
手順3
疎通確認を実施する。
RT4←→RT2(192.168.123.2)RT4←→RT3(192.168.123.3)RT4←→RT5(192.168.123.5)
RT4←→PC4(192.168.40.4)
RT4#
RT4#configure terminal
RT4(config)#interface loopback0
RT4(config-if)#ip address 10.4.4.4 255.255.255.255
RT4(config-if)#exit
RT4(config)#interface loopback1
RT4(config-if)#ip address 10.4.4.44 255.255.255.255
RT4(config-if)#exit
RT4(config)#interface gigabitEthernet 0/8
RT4(config-if)#ip address 192.168.123.4 255.255.255.0
RT4(config-if)#no shut
RT4(config-if)#exit
RT4(config)#interface fastEthernet 0/0
RT4(config-if)#ip address 192.168.40.1 255.255.255.0
RT4(config-if)#no shut
RT4(config-if)#exit
RT4#ping 192.168.123.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.123.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/0 ms
RT4#ping 192.168.123.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.123.3, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms
RT4#ping 192.168.123.5
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.123.5, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/0 ms
RT4#ping 192.168.40.4
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.40.4, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms
【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6-5
FORSE 10
手順1-5
RT5 担当
手順2
物理結線を実施する
PCを設定する
IP 192.168.50.5
サブネット 255.255.255.0
デフォルトゲートウェイ 192.168.50.1
手順3
疎通確認を実施する。
RT5←→RT2(192.168.123.2)RT5←→RT3(192.168.123.3)RT5←→RT4(192.168.123.4)
RT5←→PC5(192.168.50.5)
RT5#
RT5#configure terminal
RT5(config)#interface loopback0
RT5(config-if)#ip address 10.5.5.5 255.255.255.255
RT5(config-if)#exit
RT5(config)#interface loopback1
RT5(config-if)#ip address 10.5.5.55 255.255.255.255
RT5(config-if)#exit
RT5(config)#interface gigabitEthernet 0/8
RT5(config-if)#ip address 192.168.123.5 255.255.255.0
RT5(config-if)#no shut
RT5(config-if)#exit
RT5(config)#interface fastEthernet 0/0
RT5(config-if)#ip address 192.168.50.1 255.255.255.0
RT5(config-if)#no shut
RT5(config-if)#exit
RT5#ping 192.168.123.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.123.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/0 ms
RT5#ping 192.168.123.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.123.3, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms
RT5#ping 192.168.123.4
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.123.4, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/0 ms
RT5#ping 192.168.50.5
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.50.5, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms
【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6-6
FORSE 11
手順1-6
RT6 担当
手順2
物理結線を実施する
PCを設定する
IP 192.168.60.6
サブネット 255.255.255.0
デフォルトゲートウェイ 192.168.60.1
手順3
疎通確認を実施する。
RT6←→RT1(192.168.16.1)
RT5←→PC5(192.168.60.6)
RT6#
RT6#configure terminal
RT6(config)#interface loopback0
RT6(config-if)#ip address 10.6.6.6 255.255.255.255
RT6(config-if)#exit
RT6(config)#interface gigabitEthernet 0/8
RT6(config-if)#ip address 192.168.16.6 255.255.255.0
RT6(config-if)#no shut
RT6(config-if)#exit
RT6(config)#interface fastEthernet 0/0
RT6(config-if)#ip address 192.168.60.1 255.255.255.0
RT6(config-if)#no shut
RT6(config-if)#exit
RT6#ping 192.168.16.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.16.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/0 ms
RT6#ping 192.168.60.6
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.60.6, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms
【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6
FORSE 12
手順4-1 RT1
EIGRPルーティングを有効化します。AS番号は414を使用します
手順4-2 RT2
EIGRPルーティングを有効化します。AS番号は414を使用します
手順4-3 RT3
EIGRPルーティングを有効化します。AS番号は414を使用します
手順4-4 RT4
EIGRPルーティングを有効化します。AS番号は414を使用します
手順4-5 RT5
EIGRPルーティングを有効化します。AS番号は414を使用します
手順4-6 RT6
RT1(config)#router eigrp 414
RT1(config-router)#network 172.16.12.0
RT1(config-router)#network 172.16.13.0
RT1(config-router)#network 192.168.16.0
RT1(config-router)#network 10.1.1.1
RT1(config-router)#no auto-summary
RT2(config)#router eigrp 414
RT2(config-router)#network 172.16.12.0
RT2(config-router)#
%DUAL-5-NBRCHANGE: IP-EIGRP 414: Neighbor 172.16.12.1 (Vlan312) is
up: new adjacency
RT2(config-router)#network 192.168.123.0
RT2(config-router)#network 10.2.2.2
RT2(config-router)#no auto-summary
RT3(config)#router eigrp 414
RT3(config-router)#network 172.16.13.0
RT3(config-router)#network 192.168.123.0
RT3(config-router)#network 10.3.3.3
RT3(config-router)#no auto-summary
RT4(config)#router eigrp 414
RT4(config-router)#network 192.168.123.0
RT4(config-router)#network 192.168.40.0
RT4(config-router)#network 10.4.4.4
RT4(config-router)#network 10.4.4.44
RT4(config-router)#no auto-summary
RT4(config-router)#passive-interface fastEthernet 0/0
RT5(config)#router eigrp 414
RT5(config-router)#network 192.168.123.0
RT5(config-router)#network 192.168.50.0
RT5(config-router)#network 10.5.5.5
RT5(config-router)#network 10.5.5.55
RT5(config-router)#no auto-summary
RT5(config-router)#passive-interface fastEthernet 0/0
RT6(config)#router eigrp 414
RT6(config-router)#network 192.168.16.0
RT6(config-router)#network 192.168.60.0
RT6(config-router)#network 10.6.6.6
RT6(config-router)#no auto-summary
RT6(config-router)#passive-interface fastEthernet 0/0
【Cisco】ラボ#6 結果を確認します
FORSE 13
手順5 EIGRPのルーティングプロトコルの設定を確認します。 手順6 show ip eigrp neighborsにて、ネイバーテーブルを確認します
RT1#show ip protocols
Routing Protocol is “eigrp 414 ” ← AS番号確認
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Default networks flagged in outgoing updates
Default networks accepted from incoming updates
Redistributing: eigrp 414
EIGRP-IPv4 Protocol for AS(414)
Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
NSF-aware route hold timer is 240
Router-ID: 10.1.1.1
Topology : 0 (base)
Active Timer: 3 min
Distance: internal 90 external 170
Maximum path: 4
Maximum hopcount 100
Maximum metric variance 1
Automatic Summarization: disabled
Automatic address summarization:
Maximum path: 4
Routing for Networks:
192.168.16.0 ←ネットワーク確認
172.16.12.0
172.16.13.0
10.0.0.0
Routing Information Sources:
Gateway Distance Last Update
192.168.16.6 90 21020548
172.16.13.3 90 21020583
172.16.12.2 90 21020650
Distance: internal 90 external 170
RT1#show ip eigrp neighbors
IP-EIGRP neighbors for process 414
H Address Interface Hold Uptime SRTT RTO Q Seq
(sec) (ms) Cnt Num
0 192.168.16.6 Gig0/0 13 01:50:39 40 1000 0 55 ←
1 172.16.13.3 Vlan 11 01:50:39 40 1000 0 95
2 172.16.12.2 Vlan 11 01:50:39 40 1000 0 107
【Cisco】ラボ#6
FORSE 14
手順7 show ip eigrp topologyにて、トポロジーテーブルを確認します 手順8 show ip routeでルーティングテーブルを確認します。PCがあるセグメントへの経路がある事
RT1#show ip eigrp topology
IP-EIGRP Topology Table for AS 414/ID(10.1.1.1)
Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,
r - Reply status
P 10.1.1.1/32, 1 successors, FD is 128256
via Connected, Loopback0
P 10.5.5.5/32, 2 successors, FD is 25753856
via 192.168.12.2 (25753856/130816), Vlan312 ←ルートを確認
via 192.168.13.3 (25753856/130816), Vlan313
P 10.5.5.55/32, 2 successors, FD is 25753856
via 192.168.12.2 (25753856/130816), Vlan312
via 192.168.13.3 (25753856/130816), Vlan313
P 10.6.6.6/32, 1 successors, FD is 130816
via 192.168.16.6 (130816/128256), GigabitEthernet0/0
P 192.168.12.0/24, 1 successors, FD is 25625600
via Connected, Vlan312
P 192.168.13.0/24, 1 successors, FD is 25625600
via Connected, Vlan313
P 192.168.16.0/24, 1 successors, FD is 2816
via Connected, GigabitEthernet0/0
P 192.168.40.0/24, 2 successors, FD is 25628416
via 192.168.12.2 (25628416/5376), Vlan312
via 192.168.13.3 (25628416/5376), Vlan313
P 192.168.50.0/24, 2 successors, FD is 25628416
via 192.168.12.2 (25628416/5376), Vlan312
via 192.168.13.3 (25628416/5376), Vlan313
P 192.168.60.0/24, 1 successors, FD is 5376
via 192.168.16.6 (5376/5120), GigabitEthernet0/0
P 192.168.123.0/24, 2 successors, FD is 25625856
via 192.168.12.2 (25625856/2816), Vlan312
via 192.168.13.3 (25625856/2816), Vlan313
RT1#
RT1#show ip route
Codes: L - local, 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, E - EGP
i - IS-IS, 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
10.0.0.0/32 is subnetted, 4 subnets
C 10.1.1.1/32 is directly connected, Loopback0
D 10.5.5.5/32 [90/25753856] via 192.168.12.2, 00:04:26, Vlan312
[90/25753856] via 192.168.13.3, 00:04:24, Vlan313
D 10.5.5.55/32 [90/25753856] via 192.168.12.2, 00:04:26, Vlan312
[90/25753856] via 192.168.13.3, 00:04:24, Vlan313
D 10.6.6.6/32 [90/130816] via 192.168.16.6, 00:04:57, GigabitEthernet0/0
192.168.12.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.12.0/24 is directly connected, Vlan312
L 192.168.12.1/32 is directly connected, Vlan312
192.168.13.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.13.0/24 is directly connected, Vlan313
L 192.168.13.1/32 is directly connected, Vlan313
192.168.16.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.16.0/24 is directly connected, GigabitEthernet0/0
L 192.168.16.1/32 is directly connected, GigabitEthernet0/0
D 192.168.40.0/24 [90/25628416] via 192.168.12.2, 00:04:26, Vlan312
[90/25628416] via 192.168.13.3, 00:04:24, Vlan313
D 192.168.50.0/24 [90/25628416] via 192.168.12.2, 00:04:25, Vlan312
[90/25628416] via 192.168.13.3, 00:04:24, Vlan313
D 192.168.60.0/24 [90/5376] via 192.168.16.6, 00:04:57, GigabitEthernet0/0
D 192.168.123.0/24 [90/25625856] via 192.168.12.2, 00:04:26, Vlan312
[90/25625856] via 192.168.13.3, 00:04:25, Vlan313
【Cisco】初心者ネットワーク勉強会@秋葉原UDX
FORSE
さいごに
週末の貴重なお時間をありがとうございます
90分、みなさまの期待を超えれていたら嬉しいです
おねがい
会社設立して1年経ちました。
前世の会社で取引のあった顧客5社の案件を複数こなしました。
顧客が疑い半分だった当社に慣れ、全ての顧客から案件引合を頂いております。
がシステムエンジニアが足りず断っている状況が辛いです。
もし、みなさまの周りで、スタートアップ企業でインフラエンジニアをやって
みたい、変り者がいらっしゃいましたら、まずは勉強会から参加して頂けると
嬉しいです
高校2年生で、高校卒業後にIT企業に就職を検討をしている方がいらっしゃれ
ば紹介をお願いします。
2021年4月からの当社でのインターン経験をお願いしたいと思ってます。
15

Cisco labo6

  • 1.
  • 2.
    【Cisco】初心者ネットワーク勉強会@秋葉原UDX FORSE アジェンダ 0900~0905 今日出来るようになる事、自己紹介(チーム紹介) 0905~0930 EIGRPの構成確認、事前準備、物理結線 0930~0950インターフェースの設定、対向へのping疎通 0950~0955 【5分講義】EIGRPとは 0955~1015 ダイナミックルーティングの設定 1015~1030 届かなかったセグメントへのping疎通確認と後片付け 時間があれば CCNA試験対策(トラブル発生)講師がいたずらします pingが失敗するので直してください 終わりの挨拶、追試の時間 参加いただきありがとうございます!!! 鈴木メモ 持ち物:スイッチ×2、PC×6、ルータ×6、LAN線×14、 シリアルケーブル×6 前提 https://www.infraexpert.com/study/study31.html EIGRPをはじめからを、一読済み 今日、出来るようになる事 Cisco実機でEIGRPを組んだことがある ShowコマンドでEIGRPが確認できる CCNA試験対策のシミュレーション問題を回答できる 自己紹介(鈴木) 2
  • 3.
    【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6 FORSE3 PC6 192.168.60.6 WAN RT6 RT1 RT2 RT3 RT4 RT5 .1 Fa0/0 .4 gi0/8gi0/2gi0/1 .2 gi0/8 .1 Fa0/0 .5 gi0/8gi0/2gi0/1 .3 gi0/8 .3 Fa0/0 .2 gi0/2 .1 Fa0/0 .1 gi0/2 .1 gi0/8 .6 gi0/8 .1 Fa0/0 PC5 192.168.50.5 PC4 192.168.40.4 gi0/3 gi0/3 192.168.123.0/24 192.168.40.0/24 192.168.50.0/24 192.168.16.0/24192.168.60.0/24 1Gbps 100Mbps データセンター セグメント(6階) 本社4階セグメント 本社1階セグメント 秋葉原UDXのシステム会社は 6階にデータセンター、4階に執務室、1階のレストラン があり、それぞれをルータで接続しています ビル内回線が利用出来ずに平日1日を無駄にしてしまったの で、回線を冗⾧化する事にしました SW2 SW1
  • 4.
    【Cisco】ネットワーク基礎講座 ネットワークセグメント説明 FORSE 4 役割IPアドレス 備考 支店ユーザ セグメント 192.168.60.1 RT6のFa0/0 192.168.60.6 PC6 役割 IPアドレス 備考 支店ルータ セグメント 192.168.16.1 RT1のgi0/8 192.168.16.6 RT6のgi0/8 役割 IPアドレス 備考 WAN メイン回線 セグメント 172.16.12.1 RT1のgi0/2 172.16.12.2 RT2のgi0/2 役割 IPアドレス 備考 WAN サブ回線 セグメント 172.16.13.1 RT1のfa0/2 172.16.13.3 RT2のfa0/2 役割 IPアドレス 備考 本社 ルータ セグメント 192.168.123.2 RT2のgi0/8 192.168.123.3 RT3のgi0/8 192.168.123.4 RT4のgi0/8 192.168.123.5 RT5のGi0/8 役割 IPアドレス 備考 本社4階 セグメント 192.168.40.1 RT4のFa0/0 192.168.40.4 PC4 役割 IPアドレス 備考 本社1階 セグメント 192.168.50.1 RT5のFa0/0 192.168.50.5 PC5
  • 5.
    【Cisco】ラボ#6 ルータの設定 FORSE 5 手順1 ルータは起動に時間がかかります セットアップモードが起動したら、noと入力、もしくはcttl+c 手順2 メッセージが表示され、Enterキーを押します。Router>のプロンプトが表示されます 手順3 特権モードに移行します。Router#のプロンプトが表示されます 手順4 グローバルコンフィグレーションモードに移行し,ホスト名を変更します。Router(config)#が表示されます 手順5 telnetで他のルータにログイン出来るようにします ---System Configuration Dialog --- Would you like to enter the initial configuration dialog? [yes/no]:no Press RETURN to get started! Router> Router>enable Router# Router#enable Router#configure terminal Router(config)#hostname RT1 Router(config)#no ip domain lookup Router(config)#line console 0 Router(config-line)#logging synchronous Router(config-line)#exec-timeout 60 0 Router(config-line)#end Router#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#line vty 0 4 Router(config-line)#password cisco Router(config-line)#login Router(config-line)#exit Router(config)#enable password cisco Router(config)#end RT-10#
  • 6.
    【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6-1 FORSE6 手順1-1 インターフェースを設定する。 RT1 担当 手順2 物理結線を実施する 手順3 疎通確認を実施する。 RT1←→RT2(172.16.12.2) RT1←→RT3(172.16.13.3) RT1←→RT6(192.168.16.6)RT1# RT1#configure terminal RT1(config)#interface loopback0 RT1(config-if)#ip address 10.1.1.1 255.255.255.255 RT1(config-if)#exit RT1(config)#interface gigabitEthernet 0/8 RT1(config-if)#ip address 192.168.16.1 255.255.255.0 RT1(config-if)#no shutdown RT1(config-if)#exit RT1(config)#interface vlan 312 RT1(config-if)#ip address 172.16.12.1 255.255.255.0 RT1(config-if)#no shutdown RT1(config-if)#interface gigabitEthernet 0/2 RT1(config-if)#switchport access vlan 312 RT1(config-if)#exit RT1(config)#interface fastEthernet 0/0 RT1(config-if)#ip address 172.16.13.1 255.255.255.0 RT1(config-if)#no shutdown RT1(config-if)#exit RT1#ping 192.168.16.6 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.16.6, timeout is 2 seconds: .!!!! Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/1 ms RT1# RT1#ping 172.16.12.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.12.2, timeout is 2 seconds: .!!!! Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/0 ms RT1#ping 172.16.13.3 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.13.3, timeout is 2 seconds: .!!!! Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/1 ms RT1#
  • 7.
    【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6-2 FORSE7 手順1-2 RT2 担当 手順2 物理結線を実施する SW1も物理結線する 手順3 疎通確認を実施する。 RT2←→RT1(172.16.12.1)RT2←→RT3(192.168.123.3) RT2←→RT4(192.168.123.4)RT2←→RT5(192.168.123.5) RT2# RT2#configure terminal RT2(config)#interface loopback0 RT2(config-if)#ip address 10.2.2.2 255.255.255.255 RT2(config-if)#exit RT2(config)#interface gigabitEthernet 0/8 RT2(config-if)#ip address 192.168.123.2 255.255.255.0 RT2(config-if)#no shut RT2(config-if)#exit RT2(config)#interface vlan 312 RT2(config-if)#ip address 172.16.12.2 255.255.255.0 RT2(config-if)#no shutdown RT2(config-if)#interface gigabitEthernet 0/2 RT2(config-if)#switchport access vlan 312 RT2(config-if)#exit RT2#ping 172.16.12.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.12.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms RT2#ping 192.168.123.3 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.123.3, timeout is 2 seconds: .!!!! Success rate is 80 percent (4/5), round-trip min/avg/max = 0/2/8 ms RT2#ping 192.168.123.4 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.123.4, timeout is 2 seconds: .!!!! Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/0 ms RT2#ping 192.168.123.5 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.123.5, timeout is 2 seconds: .!!!! Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/0 ms
  • 8.
    【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6-3 FORSE8 手順1-3 RT3 担当 手順2 物理結線を実施する SW2も物理結線する 手順3疎通確認を実施する。 RT3←→RT1(172.16.13.1)RT3←→RT2(192.168.123.2) RT3←→RT4(192.168.123.4)RT3←→RT5(192.168.123.5) RT3# RT3#configure terminal RT3(config)#interface loopback0 RT3(config-if)#ip address 10.3.3.3 255.255.255.255 RT3(config-if)#exit RT3(config)#interface gigabitEthernet 0/8 RT3(config-if)#ip address 192.168.123.3 255.255.255.0 RT3(config-if)#no shut RT3(config-if)#exit RT3(config)#interface fastEthernet 0/0 RT3(config-if)#ip address 172.16.13.3 255.255.255.0 RT3(config-if)#no shutdown RT3(config-if)#exit RT3>ping 172.16.13.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.13.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/0 ms RT3>ping 192.168.123.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.123.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms RT3>ping 192.168.123.4 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.123.4, timeout is 2 seconds: .!!!! Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/2 ms RT3>ping 192.168.123.5 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.123.5, timeout is 2 seconds: .!!!! Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/2 ms
  • 9.
    【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6-4 FORSE9 手順1-4 RT4 担当 手順2 物理結線を実施する PCを設定する IP 192.168.40.4 サブネット 255.255.255.0 デフォルトゲートウェイ 192.168.40.1 手順3 疎通確認を実施する。 RT4←→RT2(192.168.123.2)RT4←→RT3(192.168.123.3)RT4←→RT5(192.168.123.5) RT4←→PC4(192.168.40.4) RT4# RT4#configure terminal RT4(config)#interface loopback0 RT4(config-if)#ip address 10.4.4.4 255.255.255.255 RT4(config-if)#exit RT4(config)#interface loopback1 RT4(config-if)#ip address 10.4.4.44 255.255.255.255 RT4(config-if)#exit RT4(config)#interface gigabitEthernet 0/8 RT4(config-if)#ip address 192.168.123.4 255.255.255.0 RT4(config-if)#no shut RT4(config-if)#exit RT4(config)#interface fastEthernet 0/0 RT4(config-if)#ip address 192.168.40.1 255.255.255.0 RT4(config-if)#no shut RT4(config-if)#exit RT4#ping 192.168.123.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.123.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/0 ms RT4#ping 192.168.123.3 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.123.3, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms RT4#ping 192.168.123.5 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.123.5, timeout is 2 seconds: .!!!! Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/0 ms RT4#ping 192.168.40.4 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.40.4, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms
  • 10.
    【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6-5 FORSE10 手順1-5 RT5 担当 手順2 物理結線を実施する PCを設定する IP 192.168.50.5 サブネット 255.255.255.0 デフォルトゲートウェイ 192.168.50.1 手順3 疎通確認を実施する。 RT5←→RT2(192.168.123.2)RT5←→RT3(192.168.123.3)RT5←→RT4(192.168.123.4) RT5←→PC5(192.168.50.5) RT5# RT5#configure terminal RT5(config)#interface loopback0 RT5(config-if)#ip address 10.5.5.5 255.255.255.255 RT5(config-if)#exit RT5(config)#interface loopback1 RT5(config-if)#ip address 10.5.5.55 255.255.255.255 RT5(config-if)#exit RT5(config)#interface gigabitEthernet 0/8 RT5(config-if)#ip address 192.168.123.5 255.255.255.0 RT5(config-if)#no shut RT5(config-if)#exit RT5(config)#interface fastEthernet 0/0 RT5(config-if)#ip address 192.168.50.1 255.255.255.0 RT5(config-if)#no shut RT5(config-if)#exit RT5#ping 192.168.123.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.123.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/0 ms RT5#ping 192.168.123.3 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.123.3, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms RT5#ping 192.168.123.4 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.123.4, timeout is 2 seconds: .!!!! Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/0 ms RT5#ping 192.168.50.5 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.50.5, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms
  • 11.
    【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6-6 FORSE11 手順1-6 RT6 担当 手順2 物理結線を実施する PCを設定する IP 192.168.60.6 サブネット 255.255.255.0 デフォルトゲートウェイ 192.168.60.1 手順3 疎通確認を実施する。 RT6←→RT1(192.168.16.1) RT5←→PC5(192.168.60.6) RT6# RT6#configure terminal RT6(config)#interface loopback0 RT6(config-if)#ip address 10.6.6.6 255.255.255.255 RT6(config-if)#exit RT6(config)#interface gigabitEthernet 0/8 RT6(config-if)#ip address 192.168.16.6 255.255.255.0 RT6(config-if)#no shut RT6(config-if)#exit RT6(config)#interface fastEthernet 0/0 RT6(config-if)#ip address 192.168.60.1 255.255.255.0 RT6(config-if)#no shut RT6(config-if)#exit RT6#ping 192.168.16.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.16.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/0 ms RT6#ping 192.168.60.6 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.60.6, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms
  • 12.
    【Cisco】ネットワーク基礎講座 今日の構成 ラボ#6 FORSE12 手順4-1 RT1 EIGRPルーティングを有効化します。AS番号は414を使用します 手順4-2 RT2 EIGRPルーティングを有効化します。AS番号は414を使用します 手順4-3 RT3 EIGRPルーティングを有効化します。AS番号は414を使用します 手順4-4 RT4 EIGRPルーティングを有効化します。AS番号は414を使用します 手順4-5 RT5 EIGRPルーティングを有効化します。AS番号は414を使用します 手順4-6 RT6 RT1(config)#router eigrp 414 RT1(config-router)#network 172.16.12.0 RT1(config-router)#network 172.16.13.0 RT1(config-router)#network 192.168.16.0 RT1(config-router)#network 10.1.1.1 RT1(config-router)#no auto-summary RT2(config)#router eigrp 414 RT2(config-router)#network 172.16.12.0 RT2(config-router)# %DUAL-5-NBRCHANGE: IP-EIGRP 414: Neighbor 172.16.12.1 (Vlan312) is up: new adjacency RT2(config-router)#network 192.168.123.0 RT2(config-router)#network 10.2.2.2 RT2(config-router)#no auto-summary RT3(config)#router eigrp 414 RT3(config-router)#network 172.16.13.0 RT3(config-router)#network 192.168.123.0 RT3(config-router)#network 10.3.3.3 RT3(config-router)#no auto-summary RT4(config)#router eigrp 414 RT4(config-router)#network 192.168.123.0 RT4(config-router)#network 192.168.40.0 RT4(config-router)#network 10.4.4.4 RT4(config-router)#network 10.4.4.44 RT4(config-router)#no auto-summary RT4(config-router)#passive-interface fastEthernet 0/0 RT5(config)#router eigrp 414 RT5(config-router)#network 192.168.123.0 RT5(config-router)#network 192.168.50.0 RT5(config-router)#network 10.5.5.5 RT5(config-router)#network 10.5.5.55 RT5(config-router)#no auto-summary RT5(config-router)#passive-interface fastEthernet 0/0 RT6(config)#router eigrp 414 RT6(config-router)#network 192.168.16.0 RT6(config-router)#network 192.168.60.0 RT6(config-router)#network 10.6.6.6 RT6(config-router)#no auto-summary RT6(config-router)#passive-interface fastEthernet 0/0
  • 13.
    【Cisco】ラボ#6 結果を確認します FORSE 13 手順5EIGRPのルーティングプロトコルの設定を確認します。 手順6 show ip eigrp neighborsにて、ネイバーテーブルを確認します RT1#show ip protocols Routing Protocol is “eigrp 414 ” ← AS番号確認 Outgoing update filter list for all interfaces is not set Incoming update filter list for all interfaces is not set Default networks flagged in outgoing updates Default networks accepted from incoming updates Redistributing: eigrp 414 EIGRP-IPv4 Protocol for AS(414) Metric weight K1=1, K2=0, K3=1, K4=0, K5=0 NSF-aware route hold timer is 240 Router-ID: 10.1.1.1 Topology : 0 (base) Active Timer: 3 min Distance: internal 90 external 170 Maximum path: 4 Maximum hopcount 100 Maximum metric variance 1 Automatic Summarization: disabled Automatic address summarization: Maximum path: 4 Routing for Networks: 192.168.16.0 ←ネットワーク確認 172.16.12.0 172.16.13.0 10.0.0.0 Routing Information Sources: Gateway Distance Last Update 192.168.16.6 90 21020548 172.16.13.3 90 21020583 172.16.12.2 90 21020650 Distance: internal 90 external 170 RT1#show ip eigrp neighbors IP-EIGRP neighbors for process 414 H Address Interface Hold Uptime SRTT RTO Q Seq (sec) (ms) Cnt Num 0 192.168.16.6 Gig0/0 13 01:50:39 40 1000 0 55 ← 1 172.16.13.3 Vlan 11 01:50:39 40 1000 0 95 2 172.16.12.2 Vlan 11 01:50:39 40 1000 0 107
  • 14.
    【Cisco】ラボ#6 FORSE 14 手順7 showip eigrp topologyにて、トポロジーテーブルを確認します 手順8 show ip routeでルーティングテーブルを確認します。PCがあるセグメントへの経路がある事 RT1#show ip eigrp topology IP-EIGRP Topology Table for AS 414/ID(10.1.1.1) Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply, r - Reply status P 10.1.1.1/32, 1 successors, FD is 128256 via Connected, Loopback0 P 10.5.5.5/32, 2 successors, FD is 25753856 via 192.168.12.2 (25753856/130816), Vlan312 ←ルートを確認 via 192.168.13.3 (25753856/130816), Vlan313 P 10.5.5.55/32, 2 successors, FD is 25753856 via 192.168.12.2 (25753856/130816), Vlan312 via 192.168.13.3 (25753856/130816), Vlan313 P 10.6.6.6/32, 1 successors, FD is 130816 via 192.168.16.6 (130816/128256), GigabitEthernet0/0 P 192.168.12.0/24, 1 successors, FD is 25625600 via Connected, Vlan312 P 192.168.13.0/24, 1 successors, FD is 25625600 via Connected, Vlan313 P 192.168.16.0/24, 1 successors, FD is 2816 via Connected, GigabitEthernet0/0 P 192.168.40.0/24, 2 successors, FD is 25628416 via 192.168.12.2 (25628416/5376), Vlan312 via 192.168.13.3 (25628416/5376), Vlan313 P 192.168.50.0/24, 2 successors, FD is 25628416 via 192.168.12.2 (25628416/5376), Vlan312 via 192.168.13.3 (25628416/5376), Vlan313 P 192.168.60.0/24, 1 successors, FD is 5376 via 192.168.16.6 (5376/5120), GigabitEthernet0/0 P 192.168.123.0/24, 2 successors, FD is 25625856 via 192.168.12.2 (25625856/2816), Vlan312 via 192.168.13.3 (25625856/2816), Vlan313 RT1# RT1#show ip route Codes: L - local, 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, E - EGP i - IS-IS, 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 10.0.0.0/32 is subnetted, 4 subnets C 10.1.1.1/32 is directly connected, Loopback0 D 10.5.5.5/32 [90/25753856] via 192.168.12.2, 00:04:26, Vlan312 [90/25753856] via 192.168.13.3, 00:04:24, Vlan313 D 10.5.5.55/32 [90/25753856] via 192.168.12.2, 00:04:26, Vlan312 [90/25753856] via 192.168.13.3, 00:04:24, Vlan313 D 10.6.6.6/32 [90/130816] via 192.168.16.6, 00:04:57, GigabitEthernet0/0 192.168.12.0/24 is variably subnetted, 2 subnets, 2 masks C 192.168.12.0/24 is directly connected, Vlan312 L 192.168.12.1/32 is directly connected, Vlan312 192.168.13.0/24 is variably subnetted, 2 subnets, 2 masks C 192.168.13.0/24 is directly connected, Vlan313 L 192.168.13.1/32 is directly connected, Vlan313 192.168.16.0/24 is variably subnetted, 2 subnets, 2 masks C 192.168.16.0/24 is directly connected, GigabitEthernet0/0 L 192.168.16.1/32 is directly connected, GigabitEthernet0/0 D 192.168.40.0/24 [90/25628416] via 192.168.12.2, 00:04:26, Vlan312 [90/25628416] via 192.168.13.3, 00:04:24, Vlan313 D 192.168.50.0/24 [90/25628416] via 192.168.12.2, 00:04:25, Vlan312 [90/25628416] via 192.168.13.3, 00:04:24, Vlan313 D 192.168.60.0/24 [90/5376] via 192.168.16.6, 00:04:57, GigabitEthernet0/0 D 192.168.123.0/24 [90/25625856] via 192.168.12.2, 00:04:26, Vlan312 [90/25625856] via 192.168.13.3, 00:04:25, Vlan313
  • 15.
    【Cisco】初心者ネットワーク勉強会@秋葉原UDX FORSE さいごに 週末の貴重なお時間をありがとうございます 90分、みなさまの期待を超えれていたら嬉しいです おねがい 会社設立して1年経ちました。 前世の会社で取引のあった顧客5社の案件を複数こなしました。 顧客が疑い半分だった当社に慣れ、全ての顧客から案件引合を頂いております。 がシステムエンジニアが足りず断っている状況が辛いです。 もし、みなさまの周りで、スタートアップ企業でインフラエンジニアをやって みたい、変り者がいらっしゃいましたら、まずは勉強会から参加して頂けると 嬉しいです 高校2年生で、高校卒業後にIT企業に就職を検討をしている方がいらっしゃれ ば紹介をお願いします。 2021年4月からの当社でのインターン経験をお願いしたいと思ってます。 15