Linux bind IP that doesn’t exist with net.ipv4.ip_nonlocal_bind

栏目: IT技术 · 发布时间: 6年前

内容简介:, which allows processes to bind() to non-local IP addresses, which can be quite useful for application such as load balancer such as Nginx, HAProxy, keepalived and others. This page explains how to bind IP address that doesn’t exist with net.ipv4.ip_nonlo

H ow do I allow Linux processes to bind to IP address that doesn’t exist yet on my Linux systems or server?

You need to set up net.ipv4.ip_nonlocal_bind

, which allows processes to bind() to non-local IP addresses, which can be quite useful for application such as load balancer such as Nginx, HAProxy, keepalived and others. This page explains how to bind IP address that doesn’t exist with net.ipv4.ip_nonlocal_bind Linux kernel option.

Why use net.ipv4.ip_nonlocal_bind under Linux operating systems?

HAProxy acts as a load balancer (LB) and a proxy server for TCP and HTTP-based applications. Similarly, Keepalived software provides High-Availability (HA) and Load Balancing features for Linux using VRRP protocol. It acts as an IP failover (Virtual IP) software to route traffic to the correct backend. We can combine HAProxy (or Nginx) along with Keepalived to build a two-node high availability cluster for our applications.

However, LB in HAPorxy, Nginx, and Keepalived need the ability to bind to a non-local IP address. The problem is we can have an IP (Virtual IP) address assigned to one node at a time. So other nodes running Nginx/HAProxy will refuse to start. You will often see an error that as follows:

Nginx: cannot bind socket.

We want to allows a running LB instance to bind to an IP that is not local for failover.

Linux bind IP that doesn’t exist with net.ipv4.ip_nonlocal_bind

Use the sysctl command to find the current value of net.ipv4.ip_nonlocal_bind:

# sysctl net.ipv4.ip_nonlocal_bind
 # sysctl net.ipv6.ip_nonlocal_bind

We can use thecat command as follows too:

cat /proc/sys/net/ipv4/ip_nonlocal_bind

To bind IP that doesn’t exist yet under Linux, run:

sudo sysctl -w net.ipv4.ip_nonlocal_bind=1

Linux bind IP net.ipv4.ip_nonlocal_bind

We can use the following syntax too:

echo 1 > /proc/sys/net/ipv4/ip_nonlocal_bind

For IPv6:

sudo sysctl -w net.ipv6.ip_nonlocal_bind=1

Binding to Non-local IP addresses in Linux permanently

Edit the /etc/sysctl.conf or /etc/sysctl.d/99-custom.conf

sudo vi /etc/sysctl.d/99-custom.conf

Append the following line:

## allow Nginx to start and bind to non local IP ##
 net.ipv4.ip_nonlocal_bind=1
 

Save and close the file. To load changes, run:

sudo sysctl -f /etc/sysctl.d/99-custom.conf
Linux bind IP that doesn’t exist with net.ipv4.ip_nonlocal_bind

Understanding sysctl command options

The -w option enable writing a value to Linux kernel variable. The -a option show all variables. For more info type the following man command:

man sysctl

OR

sysctl --help

Sample outputs:

Options:
  -a, --all            display all variables
  -A                   alias of -a
  -X                   alias of -a
      --deprecated     include deprecated parameters to listing
  -b, --binary         print value without new line
  -e, --ignore         ignore unknown variables errors
  -N, --names          print variable names without values
  -n, --values         print only values of a variables
  -p, --load[=<file>]  read values from file
  -f                   alias of -p
      --system         read values from all system directories
  -r, --pattern <expression>
                       select setting that match expression
  -q, --quiet          do not echo variable set
  -w, --write          enable writing a value to variable
  -o                   does nothing
  -x                   does nothing
  -d                   alias of -h
 
 -h, --help     display this help and exit
 -V, --version  output version information and exit

Conclusion

You learned how to set net.ipv4.ip_nonlocal_bind to 1 to configure a high available load-balancer (LB) under Linux. See “ Handling nginx Failover With KeepAlived ” and Linux kernel docs here for more info.


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

零边际成本社会

零边际成本社会

[美]杰里米·里夫金 / 赛迪研究院专家组 / 中信出版社 / 2014-11-1 / 49.00

在这本书中,《第三次工业革命》作者杰里米•里夫金开创性地探讨了极致生产力、协同共享、产消者、生物圈生活方式等全新的概念,详细地描述了数以百万计的人生产和生活模式的转变。他认为,“产消者”正在以近乎零成本的方式制作并分享自己的信息、娱乐、绿色能源和3D打印产品。他们也通过社交媒体、租赁商、合作组织以极低或零成本的模式分享汽车、住房、服装和其他物品;学生更多地参与到基于零成本模式的开放式网络课程…… ......一起来看看 《零边际成本社会》 这本书的介绍吧!

URL 编码/解码
URL 编码/解码

URL 编码/解码

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器

html转js在线工具
html转js在线工具

html转js在线工具