At times, it is useful to have a deployed infrastructure of N machines to see how networking works, how the cluster shards on nodes, etc. From time to time I remember how I did it last time. But this time I decided to just write this simple set of commands, so as not to remember,Continue Reading
Tag: Debian
How to make a layer 2 bridge between two or more Ethernet interfaces on Ubuntu Linux
The layer 2 bridging is an implementation of IEEE 802.1 D. This is the transparent bridging that was used in Ethernet layer bridges. Install package: apt-get install bridge-utils Next we’ll create a fake bridge interface: brctl addbr br0brctl stp br0 on # Enable STP in case of network loops Now we can add interfaces toContinue Reading