这篇文章也是我2004年时做的一个工程(IP接入工程),现将文章整理出来,放到Blog:
 
前几天刚做完一个工程,发出来,给大家分享一下!
:)

案例:
xxxxx终端采用GPRS拨号,通过×××联入xxxxxx内部网络。


ACS服务器配置:
1.增加用户名和密码,为每一个用户从地址池中分配一个IP地址。
2.在ACS上配好KEY。

路由器配置如下:
sh run
Building configuration...

Current configuration : 917 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Router
!
logging buffered 4096 debugging
enable secret 5 $1$Gkw9$D/svCl0sa.NZs58uoOtg4.
enable password xxxxxxxxxx
!
ip subnet-zero
!
!
no ip domain-lookup
!
!
controller E1 1/0
channel-group 0 timeslots 1-31
!

!
interface Tunnel0
ip unnumbered Serial1/0:0
tunnel source Serial1/0:0
tunnel destination x.x.x.x
!
interface FastEthernet0/0
ip address x.x.x.x 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial1/0:0
ip address x.x.x.x 255.255.255.252
encapsulation ppp
!
ip classless

ip route 0.0.0.0 0.0.0.0 Tunnel0
ip route x.x.x.x 255.255.255.255 x.x.x.x
no ip http server
ip pim bidir-enable
!
!
!
line con 0
line aux 0
line vty 0 4
password willfar
login
!
!
end

Router#