- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Controller inside tunneling traffic to the one in the DMZ.
09-23-2013 01:59 PM
I have seen a number of topics covering controllers between different security domains but I am not quite clear how would I accomplish the following setup:
- Internal controller that terminates all of my APs.
- Internal controller hosts captive portal and authenticates the users.
- Once authenticated, all user traffic including DHCP requests are tunnelled (via GRE) to the controller in the DMZ.
- The controller in the DMZ gives out IP addresses to anyone who comes via the GRE tunnel from the inside.
I tried setting this up but my clients never recieve DHCP from the DMZ.
Inside controller:
vlan 200 "Guest WiFi"
!
interface tunnel 1
description "Tunnel to DMZ"
tunnel source vlan 1
tunnel mode gre 0
tunnel destination <DMZ IP>
tunnel keepalive 5 3
mtu 1350
no inter-tunnel-flooding
tunnel vlan 200
!
wlan virtual-ap "guest"
aaa-profile "default-dot1x-psk"
vlan 200
!
In the DMZ:
vlan 200 "Guest WiFi"
!
interface vlan 200
ip address 172.31.100.1 255.255.252.0
ip nat inside
operstate up
!
interface tunnel 1
description "Tunnel to Inside"
tunnel source vlan 1
tunnel mode gre 0
tunnel destination <inside controller IP>
tunnel keepalive 5 3
trusted
mtu 1350
no inter-tunnel-flooding
tunnel vlan 200
!
ip dhcp pool wifi-guest-pool
default-router 172.31.100.1
dns-server 8.8.8.8 8.8.4.4
lease 0 4 0 0
network 172.31.100.0 255.255.252.0
authoritative
!
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Alert a Moderator
Re: Controller inside tunneling traffic to the one in the DMZ.
09-23-2013 02:08 PM
The non-dmz side of the tunnel is not trusted.
*Answers and views expressed by me on this forum are my own and not necessarily the position of Aruba Networks or Hewlett Packard Enterprise.*
ArubaOS 8.4 User Guide
InstantOS 8.3 User Guide
Airheads Knowledgebase
Airheads Learning Videos
Aruba Central Documentation
Sign up for Security Alerts
Aruba Technical Webinars
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Alert a Moderator
Re: Controller inside tunneling traffic to the one in the DMZ.
09-23-2013 02:27 PM
Setting both sides of the tunnel to trusted doesn't seem to help. I see user successfully being assigned to an l2 role, but yet I don't see him getting any IP from the dhcp.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Alert a Moderator
Re: Controller inside tunneling traffic to the one in the DMZ.
09-23-2013 02:32 PM
@garryshtern wrote:
Setting both sides of the tunnel to trusted doesn't seem to help. I see user successfully being assigned to an l2 role, but yet I don't see him getting any IP from the dhcp.
Type "show datapath tunnel table" and see if the encaps and decaps are going up on each side when you ping from one interface of VLAN 200 to another. If not, check your source/destination addresses in your tunnel statement.. They must be both reachable ip addresses between each controller.
*Answers and views expressed by me on this forum are my own and not necessarily the position of Aruba Networks or Hewlett Packard Enterprise.*
ArubaOS 8.4 User Guide
InstantOS 8.3 User Guide
Airheads Knowledgebase
Airheads Learning Videos
Aruba Central Documentation
Sign up for Security Alerts
Aruba Technical Webinars
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Alert a Moderator
Re: Controller inside tunneling traffic to the one in the DMZ.
09-23-2013 02:54 PM
I figured out the issue was permissions on the acl assigned to the role given to the user. This works now, so thanks a lot for that!
However, the actual captive portal functionality is not working. That is, a user is assigned to the custom guest role, and he is able to resolve dns, ping remote sites as per rules. However, whenever he tries to go to google.com which should force an automatic redirect to a captive portal page, it just hangs there.
Any hints?
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Alert a Moderator
Re: Controller inside tunneling traffic to the one in the DMZ.
09-23-2013 03:01 PM
Use the "ip cp-redirect-address <ip address of vlan 200>" command.
*Answers and views expressed by me on this forum are my own and not necessarily the position of Aruba Networks or Hewlett Packard Enterprise.*
ArubaOS 8.4 User Guide
InstantOS 8.3 User Guide
Airheads Knowledgebase
Airheads Learning Videos
Aruba Central Documentation
Sign up for Security Alerts
Aruba Technical Webinars
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Alert a Moderator
Re: Controller inside tunneling traffic to the one in the DMZ.
09-23-2013 03:05 PM
Will this work even if the local controller doesn't host this interface? Meaning, do I specify the IP of the <interface vlan 200> of the DMZ controller?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Alert a Moderator
Re: Controller inside tunneling traffic to the one in the DMZ.
09-23-2013 03:07 PM
*Answers and views expressed by me on this forum are my own and not necessarily the position of Aruba Networks or Hewlett Packard Enterprise.*
ArubaOS 8.4 User Guide
InstantOS 8.3 User Guide
Airheads Knowledgebase
Airheads Learning Videos
Aruba Central Documentation
Sign up for Security Alerts
Aruba Technical Webinars
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Alert a Moderator
Re: Controller inside tunneling traffic to the one in the DMZ.
09-23-2013 03:12 PM
Thanks! That worked, without ip cp-redirect, actually. Do you know if there is a way to do this without explicitely defining the IP on the Vlan. I want to avoid having the local controller route this traffic locally.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Alert a Moderator
Re: Controller inside tunneling traffic to the one in the DMZ.
09-23-2013 03:20 PM
*Answers and views expressed by me on this forum are my own and not necessarily the position of Aruba Networks or Hewlett Packard Enterprise.*
ArubaOS 8.4 User Guide
InstantOS 8.3 User Guide
Airheads Knowledgebase
Airheads Learning Videos
Aruba Central Documentation
Sign up for Security Alerts
Aruba Technical Webinars
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Alert a Moderator