type SSHConfig struct {
Host string `yaml:"host"`
Port int `yaml:"port"`
User string `yaml:"user"`
PrivateKey string `yaml:"private_key"`
Tunnels []Tunnel `yaml:"tunnels"`
}
type Tunnel struct {
LocalIP string `yaml:"local_ip"` // New field to specify local IP LocalPort int `yaml:"local_port"`
RemoteIP string `yaml:"remote_ip"`
RemotePort int `yaml:"remote_port"`
}