Forum Discussion
ciscoarc
Nimbostratus
Jan 10, 2017Creating a Virtual Server with same IP and port
Hi guys, we would like to have a single IP:port public facing Virtual Server for external users to access, i.e:
10.10.10.10:443 => external users only access this. DNS name: 10.10.10.10 = abc.co...
Jan 11, 2017
Hi!
If you want to use SSL and have multiple domains pointing to the same VIP while separating requests in the backend based on host header you could do any of the following for SSL:
- Use a wildcard certificate
- Use a multi domain certificate
- Use SNI (more here)
Then you'd have to create an irule
when HTTP_REQUEST {
set host [HTTP::host]
switch $host {
"kkk.abc.com" { pool kkk.abc.com_pool }
"lll.abc.com" { pool lll.abc.com_pool }
"mmm.abc.com" { pool mmm.abc.com_pool }
default { pool yourdefault pool }
}
}
This one would separate requests based on host header with a default to a pool of your choosing.
/Patrik
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects