Commits
Grygorii Strashko committed 9c17b98d605
ti_config_fragments/connectivity.cfg: add missed common networking options - Add missed CONFIG_NETFILTER option. - Add CONFIG_IP_MULTICAST. IP multicast is commonly used in many applications involving audio/video broadcast. - Enable IPSec configs which are required for a successful ipsec association need to be enabled. Doing that here. CONFIG_XFRM_USER=m CONFIG_NET_KEY=m CONFIG_INET=y CONFIG_INET_AH=m CONFIG_INET_ESP=m CONFIG_INET_IPCOMP=m CONFIG_INET_XFRM_MODE_TRANSPORT=m CONFIG_INET_XFRM_MODE_TUNNEL=m CONFIG_INET_XFRM_MODE_BEET=m CONFIG_NETFILTER_XT_MATCH_POLICY=m - Add CONFIG_IP_NF_NAT. This enables the `nat' table in iptables. This allows masquerading, port forwarding and other forms of full Network Address Port Translation. Without this option below command generates error message: iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE >> iptables v1.6.0: can't initialize iptables table `nat': Table does not exist (do you need to insmod?) Perhaps iptables or your kernel needs to be upgraded << Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>