n2n/doc/Scratchpad.md

53 lines
1.9 KiB
Markdown
Raw Normal View History

# n2n's Scratchpad
## RPM Packaging
```
bash
./autogen.sh
./configure
make
cd packages/rpm
./configure
rpmbuild -bb ./n2n.spec
```
## New Features between 2.0.x and 2.1.x
- Better ming Windows build support.
- Added `-E` flag to allow multicast ethernet traffic.
## Draft changelog between 2.8.x and 2.9.x (as of June 4, 2021)
2021-02-08 11:20:33 +01:00
### New Features
- Federated supernodes to allow multiple supernodes for load balancing and fail-over (`doc/Federation.md`)
- Automatic IP address assignment allows edges to draw IP addresses from the supernode (just skip `-a`)
- Allowed community names can be restricted by regular expressions (`community.list` file)
- Network filter for rules (`-R`) allowing and denying specific traffic to tunnel
2021-03-18 12:36:27 +01:00
- Experimental TCP support (`-S2`) lets edges connect to the supernodes via TCP in case firewalls block UDP (not available on Windows yet)
2021-02-08 11:20:33 +01:00
- All four supported ciphers offer integrated versions rendering OpenSSL dependency non-mandatory (optionally still available)
- MAC and IP address spoofing prevention
- Network interface metric can be set by command-line option `-x` (Windows only)
- Re-enabled local peer detection by multicast on Windows
- Edge identifier (`-I`) helps to identify edges more easily in management port output
- Optional edge user and password authentication (`-J`, `-P`)
2021-02-08 11:20:33 +01:00
### Improvements
2021-03-18 12:36:27 +01:00
- Increased edges' resiliance to temporary supernode failure
- Fixed a compression-related memory leak
2021-02-08 11:20:33 +01:00
- Ciphers partly come with platform-specific hardware acceleration (check `tools/n2n-benchmark`)
- Clean-up management port output
- Polished benchmark tool output
- Reactivated send out of gratuitous ARP packet on establishing connection
- Enhanced documentation (`doc/` folder) including the man pages and command-line help text
- Self-monitoring time stamp accuracy for use on systems with less accurate clocks
- Fixed man pages' and config files' paths
- Code clean-up