# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
-# http://www.apache.org/licenses/LICENSE-2.0
+# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
end
keys = {
- "rsa" => node[:keys][:ssh][:host_rsa_public], # ~FC039
- "dsa" => node[:keys][:ssh][:host_dsa_public] # ~FC039
+ "ssh-rsa" => node[:keys][:ssh][:host_rsa_public], # ~FC039
+ "ssh-dss" => node[:keys][:ssh][:host_dsa_public] # ~FC039
}
if node[:keys][:ssh][:host_ecdsa_public] # ~FC039
keys[ecdsa_type] = node[:keys][:ssh][:host_ecdsa_public] # ~FC039
end
+ if node[:keys][:ssh][:host_ed25519_public] # ~FC039
+ keys["ssh-ed25519"] = node[:keys][:ssh][:host_ed25519_public] # ~FC039
+ end
+
Hash[
:names => names.sort,
:addresses => node.ipaddresses.sort,
source "net"
dest "fw"
proto "tcp:syn"
- dest_ports "ssh"
+ dest_ports node[:openssh][:port]
end