Welcome to
snippetvault.com.
This site is a repository of useful code snippets that others might find useful.
Why?
- They work in too many languages and can't remember something simple.
- They want a central place to store their samples and what better place
than online.
- They don't want to bother registering on some other website.
- They want to help fellow coders do simple things without scouring Google.
Total of 39 snippets in the vault.
1 2 3 ... 8
regenerated debian system wide ssh keys
rm -f /etc/ssh/ssh_host_rsa_key /etc/ssh/ssh_host_key /etc/ssh/ssh_host_dsa_key
ssh-keygen -q -f /etc/ssh/ssh_host_key -N '' -t rsa1
ssh-keygen -q -f /etc/ssh/ssh_host_rsa_key -N '' -t rsa
ssh-keygen -q -f /etc/ssh/ssh_host_dsa_key -N '' -t dsa
/etc/init.d/ssh restart
view |
create response snippet |
comment (0)
Tag(s):
debian
server
ssh
bash
1 2 3 ... 8
© 2007 ddm productions