Forum Discussion
Cannot access the internet using a default gateway virtual server
- 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
Hello guys
I'm have a problem in the forum based which I think it is related to this topic
Using APM v13.1, When I create a forum based for a web application configured in the portal access, I got this error message from the web application:
{"Message":"The request entity's media type 'application/x-www-form-urlencoded' is not supported for this resource."}
Does this mean I should customize the web application code to accept: x-www-form-urlencoded for the forum based to work ?
Thanks
- Arnaud_LemaireJun 30, 2016
Employee
Hi, the SDK as you have seen is not complete. in the persitence.py file, you can see that the Cookies collection is containing a Cookie resource definition allowing you to do :
unfortunately the resource is not available for other persistence types.gmt.tm.ltm.persistences.cookies.cookie.exists(partition='Common', name='test_cookie')
- Mark_Saunders_1Jul 13, 2016
Altostratus
Sorry, I'm not familiar with Python, but here's a fragment of how I populate an html option field with perl. Notice there are 2 persist types I'm fetching: source-addr, and cookie.
@PersistTypes = ("source-addr", "cookie");
foreach (@PersistTypes) {
$line = "";
$PFILE="";
open($PFILE, '-|', 'curl -k -u' . $F5User . ":" . $F5Pass . ' -v https://' . $LTM . '/mgmt/tm/ltm/persistence/' . $_ . '?\$select=name 2>/dev/null') or die $!;
while ($line = <$PFILE>) {
$line =~ s{^.*[}{}; Remove everything up to and including the 1st "["
$line =~ tr/]{]"}//d;
$line =~ s/name://g;
push (@Persist, split(',',$line));
} End while
close($PFILE);
} End foreach (@PersistTypes)
foreach $PersistItem (@Persist) {
if ($PersistItem eq $PersistProfile) { $PersistValues .= "$PersistItem"; } else { $PersistValues .= "$PersistItem"; } } End foreach $PersistItem (@Persist)