MacOS Config

2023/09/24

Tags: macos

安装iproute2mac

可以和在linux操作系统一样使用ip命令查看和管理网络, 赞!!!

brew install iproute2mac

ssh配置alive

配置ServerAliveInterval, 防止长时间没有数据交互后连接断掉

# cat ~/.ssh/config
Host *
    ServerAliveInterval 30

Host home
    HostName 192.168.1.100
    User root
...