summaryrefslogtreecommitdiff
path: root/README.pod
diff options
context:
space:
mode:
authorPaul C. Buetow (mars.fritz.box) <paul@buetow.org>2014-05-16 20:12:07 +0200
committerPaul C. Buetow (mars.fritz.box) <paul@buetow.org>2014-05-16 20:12:07 +0200
commitdb6eeb697243ff2ef4eff87df0b568ec8ec1b4ac (patch)
tree6f713463a1080aee566ee73c7b338a9cff3bc358 /README.pod
parentb4969592859f7a7b8fbc54dc6a923739e36c4a6e (diff)
New release0.7.3
Diffstat (limited to 'README.pod')
-rw-r--r--README.pod30
1 files changed, 3 insertions, 27 deletions
diff --git a/README.pod b/README.pod
index 163b025..225a5f6 100644
--- a/README.pod
+++ b/README.pod
@@ -107,22 +107,12 @@ If you want to list all configured objects on your partition just run
A simple nPath service can be created as follows.
- # Create a nPath HTTP vserver, 'nPath' also auto disables NAT and PAT
- # fapi auto resolves the IP address.
fapi vserver myvserver.example.com:80 create PROTOCOL_TCP nPath
-
- # Add the pool to the vserver. The vservers name inside of BigIP will be
- # the FQDN followed by _PORT. In this case it would be:
- # myvserver.example.com_80 (or full: /Partition/myvserver.example.com_80)
- # The reason is that : are not allowed in vserver names.
fapi vserver myvserver.example.com:80 set pool foopool
- # Add a nPath HTTPS vserver
- fapi vserver myvserver.example.com:443 create PROTOCOL_TCP nPath
- fapi vserver myvserver.example.com:443 set pool foopool
-
- # Restrict the vserver to a specific VLAN (IMPORTANT! security
+ # Restrict the vservers to a specific VLAN (IMPORTANT! security
# hole otherwise!)
+ fapi vserver myvserver.example.com:80 set vlan VLANNAME
fapi vserver myvserver.example.com:443 set vlan VLANNAME
# Put the VirtualAddress of the vserver into a specific traffic group
@@ -144,24 +134,10 @@ And everything can be deleted as folows:
A simple HTTP NATed service can be created as follows.
- # Create a NATed HTTP vserver
- # fapi auto resolves the IP address.
fapi vserver myvserver.example.com:80 create PROTOCOL_TCP /Common/http
-
- # Add the pool to the vserver.
+ fapi vserver myvserver.example.com:80 set vlan VLANNAME
fapi vserver myvserver.example.com:80 set pool foopool
- # Add a NATed HTTPS vserver
- fapi vserver myvserver.example.com:443 create PROTOCOL_TCP /Common/http
- fapi vserver myvserver.example.com:443 set pool foopool
-
- # Restrict the vserver to a specific VLAN (IMPORTANT! security
- # hole otherwise!)
- fapi vserver myvserver.example.com:443 set vlan VLANNAME
-
- # Put the VirtualAddress of the vserver into a specific traffic group
- fapi vip myserver.example.com set tgroup some-traffic-group
-
In order to make this work your application servers need to have setup a
default route to the loadbalancers floating self IP.