diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-02-07 17:53:49 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-02-07 17:53:49 +0000 |
commit | a522cdb0691f44b9960030fd0438599f48cbc0a0 (patch) | |
tree | 5ef69886d6a2a18c5ff53630a32124e7b9f30333 /docs/inspircd.conf.example | |
parent | a1c889801aed91c5ee671cb1175c56116c406f8a (diff) |
Document bind value
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6536 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'docs/inspircd.conf.example')
-rw-r--r-- | docs/inspircd.conf.example | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/inspircd.conf.example b/docs/inspircd.conf.example index 7d04c6bb8..7c4b46e2f 100644 --- a/docs/inspircd.conf.example +++ b/docs/inspircd.conf.example @@ -465,6 +465,20 @@ # seconds. If this is not defined, the default of ten # # seconds is used. # # # +# bind - If you specify this value, then when creating an # +# outbound connection to the given server, the IP you # +# place here will be bound to. This is for multi- # +# homed servers which may have multiple IP addresses. # +# If you do not define this value, the first IP that # +# is not empty or localhost from your <bind> tags # +# will be bound to. This is usually acceptable, # +# however if your server has multiple network cards # +# then you may have to manually specify the bind # +# value instead of leaving it to automatic binding. # +# You can usually tell if you need to set this by # +# looking for the error 'Could not assign requested # +# address' in your log when connecting to servers. # +# # # to u:line a server (give it extra privilages required for running # # services, Q, etc) you must include the <uline server> tag as shown # # in the example below. You can have as many of these as you like. # @@ -511,6 +525,7 @@ failover="hub.other.net" timeout="15" transport="gnutls" + bind="1.2.3.4" sendpass="outgoing!password" recvpass="incoming!password"> |