Simple Sideband - iRule sideband the easy way
Code is community submitted, community supported, and recognized as ‘Use At Your Own Risk’.
Short Description
Simple Sideband is a helper iRule which makes getting started with doing iRule based ...
Published Jul 18, 2023
Version 1.0PeteWhite
Employee
Joined May 16, 2019
PeteWhite
Jul 19, 2023Employee
CA_Valli the way that i restrict the helper virtual server is that I enable VLANs, and do not add any entries. In which case it is not listening on any VLANs. I normally assign it to some random TCP port as the ip address and port are never used. You can see that in my helper VS here
ltm virtual https_helper {
destination 0.0.0.0:search-agent <-- address and port are irrelevant
ip-protocol tcp
mask 255.255.255.255
pool https_pool
profiles {
http { }
serverssl {
context serverside
}
tcp { }
}
serverssl-use-sni disabled
source 0.0.0.0/0
source-address-translation {
type automap
}
translate-address enabled
translate-port enabled
vlans-enabled <--- VLANs enabled, but none set
}