We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
How would one describe multiple (valid) values?
I'm using something like this:
'Host public' => { 'HostName' => 'A HOSTNAME', 'User' => 'A USER', 'Port' => 'PORT', 'LocalForward' => '8020 10.1.1.87:80', 'LocalForward' => '8820 10.1.1.78:8000', 'LocalForward' => '8021 10.1.1.67:80', },
But only the first value is populated in /etc/ssh/sshd_config
Thanks!
The text was updated successfully, but these errors were encountered:
Have you tried:
'Host public' => { 'HostName' => 'A HOSTNAME', 'User' => 'A USER', 'Port' => 'PORT', 'LocalForward' => ['8020 10.1.1.87:80', '8820 10.1.1.78:8000', '8021 10.1.1.67:80',], },
Sorry, something went wrong.
That worked, thank you :)
No branches or pull requests
Hi,
How would one describe multiple (valid) values?
I'm using something like this:
But only the first value is populated in /etc/ssh/sshd_config
Thanks!
The text was updated successfully, but these errors were encountered: