Привет всем!
Ув. cisco guru, подскажите плиз, как организовать сервер удаленного доступа так, чтобы клиенты подключившиеся по модему к циске 2611xm с модулем модемов NM-16AM могли ходить в мир. Циска в локальной сети, из нее видно локалку и интернет, подключаюсь по модему, вижу собственно саму циску, и dns сервер, а дальше никуда. Что не так? Конфиг:
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Cisco2611xm
!
enable secret 5 secret
!
aaa new-model
!
!
aaa authentication ppp default group radius
aaa authorization network default group radius
aaa accounting network default start-stop group radius
aaa session-id common
ip subnet-zero
!
!
ip name-server 172.16.0.2
!
async-bootp gateway 192.168.1.2
async-bootp dns-server 172.16.0.2
modemcap entry mymodem:AA=S0=1
!
!
!
!
interface Loopback1
ip address 192.168.1.2 255.255.255.0
ip nat inside
!
interface FastEthernet0/0
ip address 172.16.0.3 255.255.252.0
ip nat outside
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Group-Async1
ip unnumbered Loopback1
ip nat inside
encapsulation ppp
async dynamic address
async mode interactive
peer default ip address pool mypool
no keepalive
ppp authentication chap
group-range 33 48
!
ip local pool mypool 192.168.1.128 192.168.1.254
ip default-gateway 172.16.0.1
no ip http server
ip classless
ip route 0.0.0.0 0.0.0.0 172.16.0.1
!
!
radius-server host 172.16.0.1 auth-port 1812 acct-port 1812
radius-server key secret
radius-server authorization permit missing Service-Type
!
line con 0
speed 115200
line 33 48
flush-at-activation
modem Dialin
modem autoconfigure type mymodem
transport input all
autoselect ppp
flowcontrol hardware
line aux 0
line vty 0 4
!
!
!
end
|