mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-13 10:58:00 +03:00
fixed .ssh/config port binding parsing - fixes #5906
This commit is contained in:
parent
32170ec640
commit
b31b500727
@ -76,8 +76,8 @@ export class OpenSSHImporter extends SSHProfileImporter {
|
||||
target.forwardedPorts.push({
|
||||
type: PortForwardType.Local,
|
||||
description: value,
|
||||
host: bind.split(':')[0] ?? '127.0.0.1',
|
||||
port: parseInt(bind.split(':')[1] ?? bind),
|
||||
host: bind.includes(':') ? bind.split(':')[0] : '127.0.0.1',
|
||||
port: parseInt(bind.split(':').at(-1)),
|
||||
targetAddress: tgt.split(':')[0],
|
||||
targetPort: parseInt(tgt.split(':')[1]),
|
||||
})
|
||||
@ -87,8 +87,8 @@ export class OpenSSHImporter extends SSHProfileImporter {
|
||||
target.forwardedPorts.push({
|
||||
type: PortForwardType.Dynamic,
|
||||
description: value,
|
||||
host: bind.split(':')[0] ?? '127.0.0.1',
|
||||
port: parseInt(bind.split(':')[1] ?? bind),
|
||||
host: bind.includes(':') ? bind.split(':')[0] : '127.0.0.1',
|
||||
port: parseInt(bind.split(':').at(-1)),
|
||||
targetAddress: '',
|
||||
targetPort: 22,
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user