Forum Discussion
Randy_Johnson_L
Nimbostratus
Jul 13, 2017'HairPinning' on LTM ?
I have a case where I have a Virtual Server provisioned, and accessible from the world at 'https://company.com'.
Now we need other, 'internal' applications to be able to call to 'https://company...
ekaleido
Cirrus
Jul 13, 2017Can you use an iRule to control who can access /urihere? Would seem to be the easiest way, given the information you've provided. There are cleaner ways, but this is a start...
when HTTP_REQUEST {
if { [HTTP::path] starts_with "/urihere" } {
switch -glob [IP::client_addr] {
"10.*" { return }
"172.12.*" { return }
"192.168.*" { return }
default { discard }
}
}
}
ekaleido
Cirrus
Jul 13, 2017Do you need to enable or disable SNAT AutoMap on the virtual server?
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