プロが教えるわが家の防犯対策術!

Cisco 861ルータでPPPoE接続設定をしていますが、ISPへ接続自体は可能ですが、通信が出来ません。
ターミナルから設定をして、ISPへ接続して、IPアドレスは取得しますが、Ping自体通りません。ルーティングがおかしいのかと思うのですがマニュアル記載の方法では問題ないとなっています。
以下コンフィグです。どこに問題があるのでしょう?
非常にこまっています。よろしくお願いします

Router#show run
Building configuration...

Current configuration : 3321 bytes
!
! Last configuration change at 10:42:52 PCTime Sun Aug 16 2009 by router
!
version 12.4
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
logging message-counter syslog
enable secret 5 ****
enable password *****
!
no aaa new-model
clock timezone PCTime 9
!
crypto pki trustpoint TP-self-signed-1602674877
enrollment selfsigned
subject-name cn=IOS-Self-Signed-Certificate-1602674877
revocation-check none
rsakeypair TP-self-signed-1602674877
!
!
crypto pki certificate chain TP-self-signed-1602674877
certificate self-signed 01

quit
ip source-route
no ip routing
!
no ip cef
ip name-server 202.234.232.6
ip name-server 221.113.139.250
!
archive
log config
hidekeys
!
interface FastEthernet0
!
interface FastEthernet1
shutdown
!
interface FastEthernet2
shutdown
!
interface FastEthernet3
shutdown
!
interface FastEthernet4
description $ES_WAN$
no ip address
no ip route-cache
duplex auto
speed auto
pppoe enable group global
pppoe-client dial-pool-number 1
!
interface Vlan1
ip address 192.168.2.1 255.255.255.0
no ip route-cache
ip tcp adjust-mss 1412
!
interface Dialer0
ip address negotiated
ip mtu 1452
ip nat outside
ip virtual-reassembly
encapsulation ppp
dialer pool 1
dialer-group 1
ppp authentication chap callin
ppp chap hostname *****
ppp chap password 0 *****
!
ip forward-protocol nd
ip http server
ip http secure-server
!
ip nat inside source list 1 interface Dialer0 overload
!
access-list 1 permit 0.0.0.0 255.255.255.0
dialer-list 1 protocol ip permit
!
control-plane
!
!
line con 0
no modem enable
line aux 0
line vty 0 4
password ****
login
!
scheduler max-task-time 5000
end

A 回答 (4件)

すでに回答にある内容だけではインターネット通信はできないと思います。



さらに下記アクセスリストの記述部分を確認してください。

access-list 1 permit 0.0.0.0 255.255.255.0
上記の場合、0.0.0.0のネットワークアドレスの通信しか許可されません。

access-list 1 192.168.0.0 255.255.255.0
などとしてローカルのネットワークアドレスを指定するか
access-list 1 permit any
としてすべてのローカルからの通信を許可する必要があります。

参考URL:http://www.yanoo-japan.com/?p=715
    • good
    • 0

先ほどはルーティングしか見ていませんでした。



ひとつ気になった点として、NAT設定が抜けていると思います。
nat outsideはありますが、insideが見当たりません。

もしかすると、まだあるかもしれません。
チェック方法の一つとして、先のサンプルパラメータと上記のパラメータを
テキストエディタやテキスト比較ツールで見比べてみるという方法もあります。
    • good
    • 0

#1の者です。



・no~のコマンドについては、noを省いたもので対応できます。(Ciscoルータでは原則)
よって、ip routingとすればよいです。
投入後はおそらくshow runningでは表示されなくなると思います。

・ルーティング設定については、リンク先のPDFにも記載があります。
以下のコマンドです。
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer1
1行目も忘れずに入れてください。

この回答への補足

いろいろアドバイス頂いてありがとうございます。
ルーティングは開始出来たのですが、やはりインターネットへルーティングされません。
ルーティングコマンドをもう少し調べてみます。

補足日時:2009/08/16 21:27
    • good
    • 0

ぱっと見なので、他にもあるかもしれませんが。



・no ip routingコマンドが投入されていること
・ルーティングが書かれていないこと(デフォルトルート)

の2点が挙げられます。
検索すると、サンプルも見つかると思います。

この回答への補足

さっそく回答頂きありがとうございます。
no ip routingが入ったままになっている事は気になっては居たのですが具体的にどう対応したらいいか四苦八苦中です。
Ciscoのマニュアルはこれ↓をみて設定してました。
http://www.cisco.com/JP/support/public/loc/tac/1 …
http://www.cisco.com/japanese/warp/public/3/jp/s …

補足日時:2009/08/16 12:59
    • good
    • 0

お探しのQ&Aが見つからない時は、教えて!gooで質問しましょう!