Forum Discussion
Linda_01_162621
Nimbostratus
Nov 27, 2014Cannot access the internet using a default gateway virtual server
I am newbie, I am using a BIG-IP 2000 (11.6.0) version.
As a start, I want to create a simple network:
Client PC
10.0.0.1 255.255.255.0 GW: 10.0.0.254
*connected to int VLAN. i.e...
- Nov 28, 2014
You must disable address and port translation on your Virtual Server. These are under the "Advanced" configuration. Without that, all traffic will be forwarded to the pool member using it's IP address as the destination. Moreover, assuming you want to forward more than TCP traffic, you must change the Protocol to "*All Protocols". You almost certainly want to limit the VS to just your internal VLAN (change "VLAN and Tunnel Traffic" to "Enabled on..." and move the internal VLAN to the "Selected" box).
Incidentally, this can be achieved a different way. If you set the BIG-IP default route to 172.16.100.17, you could then use a "Forwarding (IP)" Virtual Server type, which uses the BIG-IP route table to forward traffic.
- May 12, 2016I had the same problem and I found the solution by changing the vmnet0 bridge from automatic to the associated Network Ethernet Adapter. Vmware>Edit>Virtual Network Adapter>vmnet0
You haven't actually set the URI to the new value though. If you just want to log the update, you could use this:
when RULE_INIT {
set ::DEBUG 1
}
when HTTP_REQUEST {
if { $::DEBUG }{
log local0. "Original URI: [HTTP::uri]
}
HTTP::uri [string trimright [HTTP::uri] .html]
}
when HTTP_REQUEST priority 501 {
This event runs after the prior HTTP_REQUEST event at the default priority of 500
Remove or comment out this event once done testing
if { $::DEBUG }{
log local0. "Updated URI: [HTTP::uri]
}
}
Aaron