Skip to content
This repository was archived by the owner on Mar 23, 2024. It is now read-only.

Commit 6b54890

Browse files
committed
Update README
1 parent ba57675 commit 6b54890

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
- **FakeTCP**: All TCP, UDP and ICMPv4 packets will be sent with a TCP header to bypass UDP blocking and UDP QoS. Inspired by [Udp2raw-tunnel](https://github.com/wangyu-/udp2raw-tunnel). The handshaking of TCP is also simulated.
1919
- **Proxy ARP**: Reply ARP request as it owns the specified address which is not on the network.
2020
- **Multiplexing and Multiple**: One client can handle multiple connections from different devices. And one server can serve multiple clients.
21-
- **Cross Platform**: Works well with Windows and Linux, and macOS and others in theory.
21+
- **Cross Platform**: Works well with Windows, macOS, Linux and others in theory.
22+
- **Monitor**: Observe traffic on [IkaGo-web](http://ikago.ikas.ink)
2223
- **Full Cone NAT**
2324
- **Encryption**
2425
- **KCP Support**
@@ -67,7 +68,7 @@ go run ./cmd/ikago-server -p [port]
6768

6869
`-log path`: (Optional) Log.
6970

70-
`-monitor port`: (Optional) Port for monitoring. If this value is set, IkaGo will server HTTP server on `localhost:port` and print statistics on it.
71+
`-monitor port`: (Optional) Port for monitoring. If this value is set, IkaGo will host HTTP server on `localhost:port` and print JSON statistics on it. You can observe observe traffic on [IkaGo-web](http://ikago.ikas.ink).
7172

7273
### Client options
7374

cmd/ikago-client/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,7 @@ func main() {
446446
}()
447447

448448
log.Infof("Monitor on :%d\n", cfg.Monitor)
449+
log.Infoln("You can now observe traffic on http://ikago.ikas.ink")
449450
}
450451

451452
if len(sources) == 1 {

cmd/ikago-server/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,7 @@ func main() {
425425
}()
426426

427427
log.Infof("Monitor on :%d\n", cfg.Monitor)
428+
log.Infoln("You can now observe traffic on http://ikago.ikas.ink")
428429
}
429430

430431
log.Infof("Proxy from :%d\n", cfg.Port)

0 commit comments

Comments
 (0)