Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,17 @@ emphasis on testing with many simulated native protocol endpoints.
itself to the presence of added ip addresses. This lasts several minutes.

Also note that on reboot these ip addresses need to be re-added.

If you need to remove these ip addresses without a reboot, you can run the following script:

```bash
#!/bin/bash
for sub in {0..4}; do
echo "Opening for 127.0.$sub"
for i in {0..255}; do sudo ifconfig lo0 -alias 127.0.$sub.$i; done
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
for i in {0..255}; do sudo ifconfig lo0 -alias 127.0.$sub.$i; done
for i in {0..255}; do sudo ifconfig lo0 -alias 127.0.$sub.$i down; done

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also note: this is bringing 127.0.0.0 and 127.0.0.1 down. I don't know if that's safe, even if 127.0.0.1 is being brought up again later in the same script.

done
sudo ifconfig lo0 alias 127.0.0.1 up
```

## Getting Started with the Standalone Jar

Expand Down