Blame
|
1 | # My Commands |
||||||
| 2 | ||||||||
| 3 | These are commands I run on every repeater, and pretty much the order I run them in: |
|||||||
| 4 | ||||||||
| 5 | ``` |
|||||||
| 6 | # Show the version |
|||||||
| 7 | ver |
|||||||
| 8 | ||||||||
| 9 | # Show the board |
|||||||
| 10 | board |
|||||||
| 11 | ||||||||
| 12 | # Sync the clock |
|||||||
| 13 | clock sync |
|||||||
| 14 | ||||||||
| 15 | # Use 2 byte hash size |
|||||||
| 16 | set path.hash.mode 1 |
|||||||
| 17 | ||||||||
| 18 | # Do a zero hop advert so all my companions know about this node |
|||||||
| 19 | advert.zerohop |
|||||||
| 20 | ||||||||
| 21 | # Discover zero hop neighbors |
|||||||
| 22 | discover.neighbors |
|||||||
| 23 | ||||||||
| 24 | # Set the flood advert interval |
|||||||
| 25 | set flood.advert.interval 19 |
|||||||
| 26 | ||||||||
| 27 | # Set the zero hop interval |
|||||||
| 28 | set advert.interval 238 |
|||||||
| 29 | ``` |
|||||||