Skip to content
Snippets Groups Projects
Commit fe8f6606 authored by Florent Thiery's avatar Florent Thiery
Browse files

add NETWORK_IP_NAT conf variable, refs #20581

parent a023b86f
No related branches found
No related tags found
No related merge requests found
......@@ -79,6 +79,8 @@ NETWORK_DNS1=0
NETWORK_DNS2=0
NETWORK_MASK=0
NETWORK_GATEWAY=0
# define this if IP is NATed
NETWORK_IP_NAT=0
# proxy
PROXY_HTTP=
PROXY_HTTPS=
......
......@@ -53,7 +53,7 @@ if os.path.isfile('../utils.py'):
es_utils = imp.load_source('es_utils', '../utils.py')
conf = es_utils.load_conf()
ip = conf.get('NETWORK_IP')
ip = conf.get('NETWORK_IP_NAT') or conf.get('NETWORK_IP')
conf_resolvers_keys = (
'NETWORK_DNS1',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment