CentOS 7 Igel Cloud Gateway
Revision as of 11:03, 11 November 2019 by Michael.mast (talk | contribs) (Created page with "==Purpose== To install the Igel Cloud Gateway on CentOS 7 in AWS. Reason for CentOS is for an instance pre-configured with SELinux. Officially Igel supports RHEL 7, but there...")
Purpose
To install the Igel Cloud Gateway on CentOS 7 in AWS. Reason for CentOS is for an instance pre-configured with SELinux. Officially Igel supports RHEL 7, but there are some changes I needed to make to get things to work with CentOS.
Prep CentOS Image
- If not using IPv6, disable it.[1] (I do not condone this, but my environment has third party support that is scared of IPv6)
- Append the following to /etc/sysctl.conf
net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1
- Reload the config to apply
[centos@ip ~]$ sudo sysctl -p net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1