You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
750 B
33 lines
750 B
# Regela ARP proxy
|
|
|
|
### Very simple, lazy method to configure arp tables
|
|
#### Written for our Virtuozzo's Community OS servers by Elizar [@Regela](https://sources.krechet.tech/Regela)
|
|
|
|
#### Include example config file in .yml, where is:
|
|
- name: *interfacename*
|
|
- addresses: *list of ips on interfacename*
|
|
|
|
#### Usage: move config.yum in folder /etc/RegelaArpProxy/ and run binary
|
|
|
|
```
|
|
~# RegelaArpProxy --help
|
|
Usage of RegelaArpProxy:
|
|
-example
|
|
-i string
|
|
Config File (default "/etc/RegelaArpProxy/config.yml")
|
|
|
|
~# RegelaArpProxy -example
|
|
interfaces:
|
|
- name: br0
|
|
addresses:
|
|
- 10.10.100.10
|
|
- 10.10.100.11
|
|
- 10.10.100.12
|
|
- 10.10.100.13
|
|
- name: br1
|
|
addresses:
|
|
- 10.10.101.10
|
|
- 10.10.101.11
|
|
- 10.10.101.12
|
|
- 10.10.101.13
|
|
``` |