Audi TT Stronic
								
							
						
						
	
						
							
	
						
					
					
						
	
					
				
				Hi Cisco peeps,
Got an 871W (1 x WAN 4 x LAN), trying to set it up so
1) it transmitts two SSID's (1 Main SSID and 1 Guest SSID)
2) The main SSID give access to all internal and the internet and gets its ip from our dhcp server (this is working great !)
3) The Guest gives only access to the internet and gets its IP from dhcp in the 871 (not working properly)
The Guest access has confused the hell out of me. The main SSID acts as an access point so its just a fancy L2 switch really.. But I need the guest one to be able to speak to everything as well despite it being on a different subnet so that I can then create access rules. BTW there is an internal dhcp which dishes out IP's to the guest access no problem.. and I can ping 192.168.1.252 from the guest network but nothing else
Any ideas ? here is what I have so far
	
	
	
		
			
			Got an 871W (1 x WAN 4 x LAN), trying to set it up so
1) it transmitts two SSID's (1 Main SSID and 1 Guest SSID)
2) The main SSID give access to all internal and the internet and gets its ip from our dhcp server (this is working great !)
3) The Guest gives only access to the internet and gets its IP from dhcp in the 871 (not working properly)
The Guest access has confused the hell out of me. The main SSID acts as an access point so its just a fancy L2 switch really.. But I need the guest one to be able to speak to everything as well despite it being on a different subnet so that I can then create access rules. BTW there is an internal dhcp which dishes out IP's to the guest access no problem.. and I can ping 192.168.1.252 from the guest network but nothing else
Any ideas ? here is what I have so far
		Code:
	
	version 12.4
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Cisco871
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
!
!
dot11 syslog
!
dot11 ssid Main
   vlan 1
   authentication open
   authentication key-management wpa
   mbssid guest-mode
   wpa-psk ascii 0 password1
!
dot11 ssid Main-Guest
   vlan 2
   authentication open
   authentication key-management wpa
   mbssid guest-mode
   wpa-psk ascii 0 password2
!
ip cef
no ip dhcp use vrf connected
ip dhcp excluded-address 192.168.101.1 192.168.101.10
!
ip dhcp pool guest
   import all
   network 192.168.101.0 255.255.255.0
   domain-name mydomain.com
   default-router 192.168.1.252
!
!
!
!
!
!
!
archive
 log config
  hidekeys
!
!
!
bridge irb
!
!
interface FastEthernet0
!
interface FastEthernet1
!
interface FastEthernet2
!
interface FastEthernet3
!
interface FastEthernet4
 no ip address
 duplex auto
 speed auto
 bridge-group 1
!
interface Dot11Radio0
 no ip address
 !
 encryption vlan 1 mode ciphers tkip
 !
 encryption vlan 2 mode ciphers tkip
 !
 ssid Main
 !
 ssid Main-Guest
 !
 mbssid
 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
!
interface Dot11Radio0.1
 encapsulation dot1Q 1 native
 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 Dot11Radio0.2
 description Guest WLAN
 encapsulation dot1Q 2
 ip address 192.168.101.1 255.255.255.0
 ip nat inside
 ip virtual-reassembly
!
interface Vlan1
 no ip address
 bridge-group 1
!
interface Vlan2
 no ip address
!
interface BVI1
 ip address 192.168.1.252 255.255.255.0
!
ip forward-protocol nd
!
no ip http server
no ip http secure-server
!
!
!
!
control-plane
!
bridge 1 protocol ieee
bridge 1 route ip
!
line con 0
 no modem enable
line aux 0
line vty 0 4
 login
!
scheduler max-task-time 5000
end 
	             
						
					 
 
		 
 
		 
 
		 
 
		