Attention: All pages of this wiki depend on the pages that come before it, in order as they are listed on the Main Page. Please check for Dependencies.
Please also look at What You Need to Know Before Using This Wiki

Set up Basic Firewall Functions: Difference between revisions

From COCNM
Jump to navigation Jump to search
No edit summary
 
Line 7: Line 7:
==Multiple Network Interfaces on Debian==
==Multiple Network Interfaces on Debian==
*<b>BIG FAT NOTE: Do not use ifrename on current debian, use udev instead</b>
*<b>BIG FAT NOTE: Do not use ifrename on current debian, use udev instead</b>
**SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:a0:c9:2e:fe:db", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth2"
*for i in eth0 eth1 eth2; do ADD=$(ifconfig $i | head -1 | cut -f 11 -d " "); echo "$i mac $ADD" >> /etc/iftab; done
*for i in eth0 eth1 eth2; do ADD=$(ifconfig $i | head -1 | cut -f 11 -d " "); echo "$i mac $ADD" >> /etc/iftab; done
*> /etc/network/interfaces; vi [[/etc/network/interfaces]]
*> /etc/network/interfaces; vi [[/etc/network/interfaces]]

Latest revision as of 23:02, 6 May 2019

TODO: change this to not use ifrename and use udev instead

System Prep

  • apt-get remove nfs-common rpcbind
  • apt-get install ifrename

Multiple Network Interfaces on Debian

  • BIG FAT NOTE: Do not use ifrename on current debian, use udev instead
    • SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:a0:c9:2e:fe:db", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth2"
  • for i in eth0 eth1 eth2; do ADD=$(ifconfig $i | head -1 | cut -f 11 -d " "); echo "$i mac $ADD" >> /etc/iftab; done
  • > /etc/network/interfaces; vi /etc/network/interfaces

Configure Packet Forwarding / Basic IPTables Rules Set / Network Startup Script