All,
I now have the Cisco 1811W. I am trying to do the following:
1. Create 3 VLAN's for: LAN1, LAN2, and Wireless
2. Route between the VLAN's and to Internet
3. Configure some of the ports on the Router for specific
VLAN's; FE4-5 VLAN11, FE6-9 VLAN12
4. FE2-3 are Trunk Ports to connect to 2 Cisco 2960 Switches
5. Allow VPN access to the internal LAN\Subnets\VLAN's
6. Use WPA-PSK for the Wireless setup
7. Forward DHCP traffic between VLAN's
My current config is below, but I don't think it's setup completely correct. I can't test it in production until I am sure it will "work", but I'll try to setup a test scenario. If anybody out there can critique the config and offer and suggestions or corrections, I'd greatly appreciate it. Thank you in advance for your assistance.
Current Config:
---------------------
Building configuration...
Current configuration : 5680 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Cisco1811W
!
boot-start-marker
boot-end-marker
!
enable secret 5 xxxxxx
enable password xxxxxx
!
aaa new-model
!
!
aaa authentication login rtr-remote local
aaa authorization network rtr-remote local
!
aaa session-id common
resource policy
!
!
!
ip cef
!
!
!
!
crypto pki trustpoint TP-self-signed-2680913853
enrollment selfsigned
subject-name cn=IOS-Self-Signed-Certificate-2680913853
revocation-check none
rsakeypair TP-self-signed-2680913853
!
!
crypto pki certificate chain TP-self-signed-2680913853
certificate self-signed 01
quit
username xxxxxx password 0 xxxxxx
!
!
!
crypto isakmp policy 1
encr 3des
hash md5
authentication pre-share
group 2
lifetime 480
!
crypto isakmp client configuration group rtr-remote
key secret-password
dns 192.168.12.70 4.2.2.1
domain smi.kateaspen.net
!
crypto ipsec security-association lifetime seconds 86400
!
crypto ipsec transform-set vpn1 esp-3des esp-sha-hmac
!
crypto ipsec client ezvpn ezvpnclient
connect auto
group ezvpnclient key secret-password
mode client
xauth userid mode interactive
!
!
crypto dynamic-map dynmap 1
set transform-set vpn1
reverse-route
!
crypto map dynmap isakmp authorization list rtr-remote
crypto map dynmap client configuration address respond
!
crypto map static-map 1 ipsec-isakmp dynamic dynmap
!
bridge irb
!
!
!
interface FastEthernet0
description WAN Port
ip address x.x.x.x 255.255.255.224
ip nat outside
ip virtual-reassembly
duplex auto
speed 100
crypto map static-map
crypto ipsec client ezvpn ezvpnclient
!
interface FastEthernet1
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet2
description Trunk to 2960_(11.9)
switchport mode trunk
duplex full
speed 100
!
interface FastEthernet3
description Trunk to 2960_(11.10)
switchport mode trunk
duplex full
speed 100
!
interface FastEthernet4
duplex full
speed 100
vlan-id dot1q 11
exit-vlan-config
!
!
interface FastEthernet5
duplex full
speed 100
vlan-id dot1q 11
exit-vlan-config
!
!
interface FastEthernet6
duplex full
speed 100
vlan-id dot1q 12
exit-vlan-config
!
!
interface FastEthernet7
duplex full
speed 100
vlan-id dot1q 12
exit-vlan-config
!
!
interface FastEthernet8
duplex full
speed 100
vlan-id dot1q 12
exit-vlan-config
!
!
interface FastEthernet9
duplex full
speed 100
vlan-id dot1q 12
exit-vlan-config
!
!
interface Dot11Radio0
no ip address
shutdown
!
encryption mode ciphers tkip
!
ssid Smartmark
vlan 13
!
ssid smartmark
authentication open
authentication key-management wpa
wpa-psk ascii 0 xxxxxx
!
speed basic-1.0 basic-2.0 basic-5.5 6.0 9.0 basic-11.0 12.0 18.0 24.0 36.0 48.0 54.0
station-role root
no cdp enable
bridge-group 1
bridge-group 1 subscriber-loop-control
bridge-group 1 spanning-disabled
bridge-group 1 block-unknown-source
no bridge-group 1 source-learning
no bridge-group 1 unicast-flooding
!
interface Dot11Radio1
no ip address
shutdown
!
ssid smartmark
authentication open
wpa-psk ascii 0 xxxxxx
!
speed basic-6.0 9.0 basic-12.0 18.0 basic-24.0 36.0 48.0 54.0
station-role root
!
interface Vlan1
no ip address
!
interface Vlan12
description Server vLAN
ip address 192.168.12.4 255.255.255.0
no ip redirects
no ip unreachables
!
interface Vlan11
description User vLAN
ip address 192.168.11.4 255.255.255.0
ip helper-address 192.168.12.70
no ip redirects
no ip unreachables
!
interface Vlan13
description Wireless vLAN
ip address 192.168.13.4 255.255.255.0
ip helper-address 192.168.12.70
no ip redirects
no ip unreachables
crypto ipsec client ezvpn ezvpnclient inside
bridge-group 1
!
interface Async1
no ip address
encapsulation slip
shutdown
!
interface BVI1
ip address 192.168.14.1 255.255.255.0
ip helper-address 192.168.12.70
!
ip local pool dynpool 192.168.13.201 192.168.13.250
!
!
ip http server
ip http secure-server
!
!
!
!
!
!
control-plane
!
bridge 1 protocol ieee
bridge 1 route ip
!
line con 0
line 1
modem InOut
stopbits 1
speed 115200
flowcontrol hardware
line aux 0
line vty 0 4
!
!
webvpn context Default_context
ssl authenticate verify all
!
no inservice
!
end
Thanks,
CBRRyda