Jun 1, 2020
by Grzegorz Juszczak
centos 7 onparent bridge, centos bridge vlan tagged bond, jumbo frames bond centos 7, jumbo frames bond rhel 7, lacp bond mode 4 centos, lacp bond mode 4 redhat, redhat 7 onparent bdidge, rhel bridge vlan tagged bond, vlan tagging 802.1q centos 7, vlan tagging 802.1q rhel 7
Linux enables us to create advanced network setups which provide us with special features like NIC Bonding, VLAN tagging or Bridging allowing us to increase network connectivity efficiency and reliability of Linux based hosts.
Linux Bond is a kernel module which facilitates combining multiple network interfaces (like ens1f0, ens1f1) into aggregated links named Bonds to provide network redundancy, link failover and increased throughput.
VLAN tagging (802.1q) helps us to distinguish particular VLANs from network trunk (VLANs range) coming from the switch. It’s very helpful Linux kernel module, which enables us to connect to the multiple networks, if the server has less NICs than networks.
Read More
Comment uncomment and replace characters in multiple lines in Vim
Modifying files in Vim can be arduous and time-consuming, especially when we want to modify multiple lines at once. The typical use case is modifying a configuration file in the system when it is required to comment or uncomment multiple lines at a time, or to replace the same character in many similar lines from the top to the bottom. Here are a few hints on how to facilitate multiple line modifications in text files using Vim editor.
Read More