質問編集履歴

7

アクセスリスト追記

2016/05/31 15:19

投稿

yotsuba
yotsuba

スコア20

test CHANGED
File without changes
test CHANGED
@@ -4,6 +4,12 @@
4
4
 
5
5
  ・VLAN 1 へ access-list 1 を適用
6
6
 
7
+ ・access-list 1 permit 192.168.11.0 0.0.0.255
8
+
9
+ を追加
10
+
11
+ ↑この時点でVLAN間PING応答できるようになり、インターネット接続できた。
12
+
7
13
 
8
14
 
9
15
  <追記5/22>

6

5/31修正点を追記

2016/05/31 15:19

投稿

yotsuba
yotsuba

スコア20

test CHANGED
File without changes
test CHANGED
@@ -1,3 +1,11 @@
1
+ <追記5/31>
2
+
3
+ ・interface Dialer 1 へ access-list 100 を適用
4
+
5
+ ・VLAN 1 へ access-list 1 を適用
6
+
7
+
8
+
1
9
  <追記5/22>
2
10
 
3
11
  ・VLAN100 に ip nat inside を追加設定
@@ -318,6 +326,14 @@
318
326
 
319
327
  ip address 192.168.11.100 255.255.255.0
320
328
 
329
+ ip access-group 1 in
330
+
331
+ ip nat inside
332
+
333
+ ip virtual-reassembly in
334
+
335
+
336
+
321
337
  !
322
338
 
323
339
  interface Dialer1
@@ -326,6 +342,8 @@
326
342
 
327
343
  ip address negotiated
328
344
 
345
+ ip access-group 100 in
346
+
329
347
  ip nat outside
330
348
 
331
349
  ip virtual-reassembly in

5

show ip interface brief の結果を修正(VLAN1 Protocol up)

2016/05/31 14:10

投稿

yotsuba
yotsuba

スコア20

test CHANGED
File without changes
test CHANGED
@@ -652,7 +652,7 @@
652
652
 
653
653
  Virtual-Access2 unassigned YES unset up up
654
654
 
655
- Vlan1 192.168.0.1 YES NVRAM up down
655
+ Vlan1 192.168.0.1 YES NVRAM up up
656
656
 
657
657
  Vlan100 192.168.11.100 YES NVRAM up up
658
658
 

4

変更点誤字修正

2016/05/22 04:24

投稿

yotsuba
yotsuba

スコア20

test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ・VLAN100 に ip nat inside を追加設定
4
4
 
5
- ・以下2つの結果をを追記しました。
5
+ ・以下3つの結果をを追記しました。
6
6
 
7
7
  show ip route
8
8
 

3

show ip interface brief 結果の追記

2016/05/22 03:08

投稿

yotsuba
yotsuba

スコア20

test CHANGED
File without changes
test CHANGED
@@ -4,9 +4,11 @@
4
4
 
5
5
  ・以下2つの結果をを追記しました。
6
6
 
7
- show ip route
7
+ show ip route
8
-
8
+
9
- show interfaces Dialer1
9
+ show interfaces Dialer1
10
+
11
+ show ip interface brief
10
12
 
11
13
  ・コンソールからのPING結果
12
14
 
@@ -613,3 +615,45 @@
613
615
  C 220.148.136.242 is directly connected, Dialer1
614
616
 
615
617
  ```
618
+
619
+
620
+
621
+ ```C#
622
+
623
+ Router01#show ip interface brief
624
+
625
+ Interface IP-Address OK? Method Status Protocol
626
+
627
+ BRI0 unassigned YES NVRAM administratively down down
628
+
629
+ BRI0:1 unassigned YES unset administratively down down
630
+
631
+ BRI0:2 unassigned YES unset administratively down down
632
+
633
+ Dialer1 219.126.41.36 YES IPCP up up
634
+
635
+ FastEthernet0 unassigned YES NVRAM down down
636
+
637
+ FastEthernet1 unassigned YES NVRAM up up
638
+
639
+ FastEthernet2 unassigned YES unset down down
640
+
641
+ FastEthernet3 unassigned YES unset administratively down down
642
+
643
+ ...
644
+
645
+ FastEthernet8 unassigned YES unset administratively down down
646
+
647
+ FastEthernet9 unassigned YES unset up up
648
+
649
+ NVI0 unassigned YES unset administratively down down
650
+
651
+ Virtual-Access1 unassigned YES unset up up
652
+
653
+ Virtual-Access2 unassigned YES unset up up
654
+
655
+ Vlan1 192.168.0.1 YES NVRAM up down
656
+
657
+ Vlan100 192.168.11.100 YES NVRAM up up
658
+
659
+ ```

2

PING結果追記

2016/05/22 03:07

投稿

yotsuba
yotsuba

スコア20

test CHANGED
File without changes
test CHANGED
@@ -4,9 +4,17 @@
4
4
 
5
5
  ・以下2つの結果をを追記しました。
6
6
 
7
- show ip route
7
+ show ip route
8
-
8
+
9
- show interfaces Dialer1
9
+ show interfaces Dialer1
10
+
11
+ ・コンソールからのPING結果
12
+
13
+ ping 192.168.0.1 NG
14
+
15
+ ping 192.168.11.100 OK
16
+
17
+ ping www.google.co.jp OK
10
18
 
11
19
 
12
20
 

1

ルータ設定の追記、追加設定

2016/05/22 02:33

投稿

yotsuba
yotsuba

スコア20

test CHANGED
File without changes
test CHANGED
@@ -1,3 +1,17 @@
1
+ <追記5/22>
2
+
3
+ ・VLAN100 に ip nat inside を追加設定
4
+
5
+ ・以下2つの結果をを追記しました。
6
+
7
+ show ip route
8
+
9
+ show interfaces Dialer1
10
+
11
+
12
+
13
+ ---
14
+
1
15
  初心者です。よろしくお願いします。
2
16
 
3
17
 
@@ -435,3 +449,159 @@
435
449
  end
436
450
 
437
451
  ```
452
+
453
+
454
+
455
+
456
+
457
+ ```C#
458
+
459
+ Router01#show interfaces Dialer1
460
+
461
+ Dialer1 is up, line protocol is up (spoofing)
462
+
463
+ Hardware is Unknown
464
+
465
+ Internet address is 219.126.41.36/32
466
+
467
+ MTU 1454 bytes, BW 56 Kbit/sec, DLY 20000 usec,
468
+
469
+ reliability 255/255, txload 1/255, rxload 1/255
470
+
471
+ Encapsulation PPP, LCP Closed, loopback not set
472
+
473
+ Keepalive set (10 sec)
474
+
475
+ DTR is pulsed for 1 seconds on reset
476
+
477
+ Interface is bound to Vi2
478
+
479
+ Last input never, output never, output hang never
480
+
481
+ Last clearing of "show interface" counters 01:01:27
482
+
483
+ Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
484
+
485
+ Queueing strategy: weighted fair
486
+
487
+ Output queue: 0/1000/64/0 (size/max total/threshold/drops)
488
+
489
+ Conversations 0/0/16 (active/max active/max total)
490
+
491
+ Reserved Conversations 0/0 (allocated/max allocated)
492
+
493
+ Available Bandwidth 42 kilobits/sec
494
+
495
+ 5 minute input rate 0 bits/sec, 0 packets/sec
496
+
497
+ 5 minute output rate 0 bits/sec, 0 packets/sec
498
+
499
+ 62 packets input, 4974 bytes
500
+
501
+ 1610 packets output, 83047 bytes
502
+
503
+ Bound to:
504
+
505
+ Virtual-Access2 is up, line protocol is up
506
+
507
+ Hardware is Virtual Access interface
508
+
509
+ MTU 1454 bytes, BW 56 Kbit/sec, DLY 20000 usec,
510
+
511
+ reliability 255/255, txload 1/255, rxload 1/255
512
+
513
+ Encapsulation PPP, LCP Open
514
+
515
+ Stopped: CDPCP
516
+
517
+ Open: IPCP
518
+
519
+ PPPoE vaccess, cloned from Dialer1
520
+
521
+ Vaccess status 0x44, loopback not set
522
+
523
+ Keepalive set (10 sec)
524
+
525
+ DTR is pulsed for 5 seconds on reset
526
+
527
+ Interface is bound to Di1 (Encapsulation PPP)
528
+
529
+ Last input 00:00:06, output never, output hang never
530
+
531
+ Last clearing of "show interface" counters 01:01:22
532
+
533
+ Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
534
+
535
+ Queueing strategy: fifo
536
+
537
+ Output queue: 0/40 (size/max)
538
+
539
+ 5 minute input rate 0 bits/sec, 0 packets/sec
540
+
541
+ 5 minute output rate 0 bits/sec, 0 packets/sec
542
+
543
+ 495 packets input, 11065 bytes, 0 no buffer
544
+
545
+ Received 0 broadcasts (0 IP multicasts)
546
+
547
+ 0 runts, 0 giants, 0 throttles
548
+
549
+ 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort
550
+
551
+ 1617 packets output, 83195 bytes, 0 underruns
552
+
553
+ 0 output errors, 0 collisions, 0 interface resets
554
+
555
+ 0 unknown protocol drops
556
+
557
+ 0 output buffer failures, 0 output buffers swapped out
558
+
559
+ 0 carrier transitions
560
+
561
+ ```
562
+
563
+
564
+
565
+ ```C#
566
+
567
+ Router01#show ip route
568
+
569
+ Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
570
+
571
+ D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
572
+
573
+ N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
574
+
575
+ E1 - OSPF external type 1, E2 - OSPF external type 2
576
+
577
+ i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
578
+
579
+ ia - IS-IS inter area, * - candidate default, U - per-user static route
580
+
581
+ o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP
582
+
583
+ + - replicated route, % - next hop override
584
+
585
+
586
+
587
+ Gateway of last resort is 0.0.0.0 to network 0.0.0.0
588
+
589
+
590
+
591
+ S* 0.0.0.0/0 is directly connected, Dialer1
592
+
593
+ 192.168.11.0/24 is variably subnetted, 2 subnets, 2 masks
594
+
595
+ C 192.168.11.0/24 is directly connected, Vlan100
596
+
597
+ L 192.168.11.100/32 is directly connected, Vlan100
598
+
599
+ 219.126.41.0/32 is subnetted, 1 subnets
600
+
601
+ C 219.126.41.36 is directly connected, Dialer1
602
+
603
+ 220.148.136.0/32 is subnetted, 1 subnets
604
+
605
+ C 220.148.136.242 is directly connected, Dialer1
606
+
607
+ ```