12345678910111213141516171819202122232425262728 |
- #!/bin/bash
- # file: arp-token.sh
- # ====================================================================
- # interfaces;
- # --------------------------------------------------------------------
- IF0=eth0
- IF1=eth1
- IF2=eth2
- # ====================================================================
- # subnets;
- # --------------------------------------------------------------------
- NET1=192.168.1.0
- NET2=192.168.2.0
- # ====================================================================
- # host interfaces;
- # --------------------------------------------------------------------
- IP1=192.168.1.1
- IP2=192.168.2.1
- NIC1=00:50:04:B2:54:15
- NIC2=00:50:04:D3:4E:F2
|