コメントありがとうございます。 サービス終了した今なら、安く中古が手に入りそ…
CiscoのルータをPPPoEサーバにしてユーザごとに固定IPを割り当ててみた
C841MのLANポートは4つあるが、
そのどのポートからダイアルしても、
ユーザ名で固定のIPを割り当てたかった。
最終的にはPPPoEパススルーも設定し、
クライアント配下のN.Wからもダイアルアップしたい。
コード中の変数は次の通り。
使用する際は適宜変更してください。
【ユーザ1】
アカウント:user1@example.local
パスワード:user1
固定IP:20.0.0.10
【ユーザ2】
アカウント:user2@example.local
パスワード:user2
固定IP:20.0.0.20
【ユーザ3】
アカウント:user3@example.local
パスワード:user3
固定IP:20.0.0.30
【ユーザ4】
アカウント:user4@example.local
パスワード:user4
固定IP:20.0.0.40
!! ! AAAの設定 !! aaa new-model aaa authentication ppp PPP local aaa authorization network default local ! aaa attribute list USER1_LIST attribute type addr 20.0.0.10 service ppp protocol ip exit aaa attribute list USER2_LIST attribute type addr 20.0.0.20 service ppp protocol ip exit aaa attribute list USER3_LIST attribute type addr 20.0.0.30 service ppp protocol ip exit aaa attribute list USER4_LIST attribute type addr 20.0.0.40 service ppp protocol ip exit ! username user1@example.local password 0 user1 username user1@example.local aaa attribute list USER1_LIST username user2@example.local password 0 user2 username user2@example.local aaa attribute list USER2_LIST username user3@example.local password 0 user3 username user3@example.local aaa attribute list USER3_LIST username user4@example.local password 0 user4 username user4@example.local aaa attribute list USER4_LIST !! ! PPPoEサーバの設定 !! interface Virtual-Template9 ip address 20.0.0.254 255.255.255.0 ppp authentication chap PPP exit ! bba-group pppoe group-9 virtual-template 9 exit ! interface Vlan9 pppoe enable group group-9 exit ! interface GigabitEthernet0/0 switchport access vlan 9 exit interface GigabitEthernet0/1 switchport access vlan 9 exit interface GigabitEthernet0/2 switchport access vlan 9 exit interface GigabitEthernet0/3 switchport access vlan 9 exit
検索
コメントを残す