Difference between revisions of "CentOS 7 Igel Cloud Gateway"
Jump to navigation
Jump to search
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...") |
Michael.mast (talk | contribs) |
||
Line 3: | Line 3: | ||
==Prep CentOS Image== | ==Prep CentOS Image== | ||
*If not using IPv6, disable it.<ref>https://www.thegeekdiary.com/centos-rhel-7-how-to-disable-ipv6/</ref> (I do not condone this, but my environment has third party support that is scared of IPv6) | *If not using IPv6, disable it.<ref>https://www.thegeekdiary.com/centos-rhel-7-how-to-disable-ipv6/</ref> (I do not condone this, but my environment has third party support that is scared of IPv6) | ||
− | *Append the following to /etc/sysctl.conf | + | *Append the following to /etc/sysctl.conf <ref>https://www.thegeekdiary.com/centos-rhel-7-how-to-disable-ipv6/</ref> |
<pre> | <pre> | ||
net.ipv6.conf.all.disable_ipv6 = 1 | net.ipv6.conf.all.disable_ipv6 = 1 | ||
Line 13: | Line 13: | ||
net.ipv6.conf.all.disable_ipv6 = 1 | net.ipv6.conf.all.disable_ipv6 = 1 | ||
net.ipv6.conf.default.disable_ipv6 = 1 | net.ipv6.conf.default.disable_ipv6 = 1 | ||
+ | </pre> | ||
+ | *Add the following to the yum config /etc/yum.conf <ref>http://blogoless.blogspot.com/2014/12/centos-7-ipv6-and-yum.html</ref> | ||
+ | <pre> | ||
+ | ip_resolve=4 | ||
</pre> | </pre> | ||
<ref>https://kb.igel.com/igelicg-2.01/preparing-the-linux-machine-19181657.html</ref> | <ref>https://kb.igel.com/igelicg-2.01/preparing-the-linux-machine-19181657.html</ref> |
Revision as of 11:09, 11 November 2019
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