summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli
diff options
context:
space:
mode:
authorkhramshinr <khramshinr@gmail.com>2024-06-25 16:37:16 +0600
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-07-03 13:33:52 +0000
commit6f67cf62d20ced7c72ca6a856ce66d1e3396e79e (patch)
tree992b0c42fa1e039ad52113e1e69fc8ef6812c140 /smoketest/scripts/cli
parentc5716358c150eb215804dfb293dcf831a8a07a9f (diff)
downloadvyos-1x-6f67cf62d20ced7c72ca6a856ce66d1e3396e79e.tar.gz
vyos-1x-6f67cf62d20ced7c72ca6a856ce66d1e3396e79e.zip
ssh: T5878: Allow changing the PubkeyAcceptedAlgorithms option
(cherry picked from commit 06e6e011cdf12e8d10cf1f6d4d848fd5db51720d)
Diffstat (limited to 'smoketest/scripts/cli')
-rwxr-xr-xsmoketest/scripts/cli/test_service_ssh.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/test_service_ssh.py b/smoketest/scripts/cli/test_service_ssh.py
index b09990c92..d8e325eee 100755
--- a/smoketest/scripts/cli/test_service_ssh.py
+++ b/smoketest/scripts/cli/test_service_ssh.py
@@ -304,6 +304,22 @@ class TestServiceSSH(VyOSUnitTestSHIM.TestCase):
for line in ssh_lines:
self.assertIn(line, tmp_sshd_conf)
+ def test_ssh_pubkey_accepted_algorithm(self):
+ algs = ['ssh-ed25519', 'ecdsa-sha2-nistp256', 'ecdsa-sha2-nistp384',
+ 'ecdsa-sha2-nistp521', 'ssh-dss', 'ssh-rsa', 'rsa-sha2-256',
+ 'rsa-sha2-512'
+ ]
+
+ expected = 'PubkeyAcceptedAlgorithms '
+ for alg in algs:
+ self.cli_set(base_path + ['pubkey-accepted-algorithm', alg])
+ expected = f'{expected}{alg},'
+ expected = expected[:-1]
+
+ self.cli_commit()
+ tmp_sshd_conf = read_file(SSHD_CONF)
+ self.assertIn(expected, tmp_sshd_conf)
+
if __name__ == '__main__':
unittest.main(verbosity=2)