Skip to content

Commit

Permalink
Network Cheatsheet
Browse files Browse the repository at this point in the history
Network Cheatsheet
  • Loading branch information
1nPr0c committed Apr 12, 2015
1 parent 8ec15b5 commit c248d6b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Cheatsheet_Networking.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Useful Networking Cheatsheet
----------------------------

[+] Setting up an Ethernet bridge in Ubuntu/Kali Linux

# Install bridge-utils
sudo apt-get install bridge-utils

# Disable network-manager + firewall

# Configuration

ifconfig
ifconfig eth0 0.0.0.0
ifconfig eth1 0.0.0.0
brctl addbr br0
brctl addif br0 eth0
brctl addif br0 eth1
ifconfig mybridge up
dhclient br0 on devices

sudo tcpdump -i mybridge

0 comments on commit c248d6b

Please sign in to comment.