The NetScaler ADC fails if the cache redirection virtual server and the httpport parameter point to the same service. For example, the following configuration causes the ADC to fail:
set ns param -httpport 80
add cr vserver cr1 http * 80
set cr vserver cr1 -listenpoliciy "client.ip.src.eq(1.1.1.1)"
Workarounds:
Add a listen policy when you add the cache redirection virtual server. For example:
set ns param -httpport 80
add cr vserver cr1 -td 0 HTTP * 80 -range 1 -cacheType TRANSPARENT -Listenpolicy "CLIENT.IP.DST.EQ(4.4.4.10)"
Or:
Unset the httpport parameter. For example:
unset ns param httpport
add cr vserver cr1 http * 80