Terminal 下測試網路速度

最近把中華有個速在必行方案, 就把家裡的網路昇到 1G/600M

就很好奇在 freeBSD 的 CLI 模式怎樣測速

原來 Speedtest 也有 python scripts 可以用

# curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python3.8 -

其實這個不需要 root 權限啦, 結果來囉

juan@psychic:~ % curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python3.8 -
Retrieving speedtest.net configuration...
Testing from Chunghwa Telecom (xxx.xxx.xx.xxx)...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by Chunghwa Mobile (Taipei) [1.90 km]: 2.295 ms
Testing download speed................................................................................
Download: 935.72 Mbit/s
Testing upload speed......................................................................................................
Upload: 586.52 Mbit/s

不錯不錯, 這次可以不用換防火牆

Loading

DHCP 派送 static route – pfSense 2.1

最近在研究 pfSense
主要是把它接上一條光世代分流
降低實驗室內部 VPN 的 loading

因為不想, 也暫時沒權限動到 VPN 用的那台 Fortinet 的設定
於是就在 pfSene 上的 System > Routing 的部份加上幾條 static routes
並在 Firewall > Rules > LAN 把 VPN 內的 IPs 全部設成 pass

但遇到一個小狀況
就是外點有兩台 AS/400 都可以順利連上
但沒多久就會被踢掉

一度在懷疑是 Idle Timeout 造成的
但查了 pfSense 上 Firewall 的 Rules,
並沒有特別去調整 Session 的 Timeout 的地方

後來, 試了一下
如果直接在 PC 端就加了條 static route
把到外點的 default gateway 改成 VPN 的 ip
這個問題就解決了
Continue reading “DHCP 派送 static route – pfSense 2.1”

Loading