CentOS 7 Igel Cloud Gateway

From Michael's Information Zone
Jump to navigation Jump to search

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 [2]
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
  • Add the following to the yum config /etc/yum.conf [3]
ip_resolve=4

[4]