diff options
| author | Paul C. Buetow <paul@buetow.org> | 2014-04-17 07:11:17 +0200 |
|---|---|---|
| committer | Paul C. Buetow <paul@buetow.org> | 2014-04-17 07:11:17 +0200 |
| commit | 387362258278258ec5400853ee1122cab497354a (patch) | |
| tree | 2385627275579afd4825b9d63746d9120157f4b9 /docs | |
| parent | 0ac44c8155f0a5f274056c58c745dd047d2b4cbd (diff) | |
feature in issue 7
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/fapi.pod | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/fapi.pod b/docs/fapi.pod index bcfb6d0..4af24cb 100644 --- a/docs/fapi.pod +++ b/docs/fapi.pod @@ -137,6 +137,37 @@ And everything can be deleted as folows: (Docu to be written) +=head2 About the NAME argument + +In most cases NAME can be a hostname, FQDN or an IP address. Optionally folled +by a port: + + NAME := fqdn|hostname|ip[:ip2[:port]] + +Examples: + + # Auto resolving of the virtual address (IP) and auto port 80 + f vserver fqdn.example.com create + + # Auto resolving of the virtual address (IP) + f vserver fqdn.example.com:443 create + + # Auto resolving of the FQDN and the virtual address (IP) and auto port 80 + f vserver hostname create + + # Auto resolving of the FQDN and the virtual address (IP) + f vserver hostname:443 create + + # vserver name and its virtual address will be 1.2.3.4 and auto port 80 + f vserver 1.2.3.4 create + + # vserver name and its virtual address will be 1.2.3.4 + f vserver 1.2.3.4:443 create + + # vserver name is foo, its virtual address 1.2.3.4 and port is 80 + f vserver foo:1.2.3.4:80 create + + =head1 AUTHOR Paul C. Buetow - <paul@buetow.org> |
