How to check or remove IP address from a hashed known_hosts file?which


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users How to check or remove IP address from a hashed known_hosts file?which
# 1  
Old 05-13-2014
How to check or remove IP address from a hashed known_hosts file?which

Hi,

In my server, the hostname and IP addresses are added to the known_hosts which then be hashed by ssh-keygen -H -f. Is it possible to check if an IP address has already been added to the hashed known_hosts to avoid duplications (I think there will be problems if there are duplicated IP addresses in known_hosts)? Or delete the entry if there are duplicated hostname and IP address in the hashed known_hosts?

Thank you.
# 2  
Old 05-13-2014
Change the ip in ip='186.192.10.122' in the below code to check if the IP is available
Code:
 
awk '$0 ~ ip {print ip " exists in " FILENAME}' ip='186.192.10.122' known_hosts

# 3  
Old 05-15-2014
Quote:
Originally Posted by SriniShoo
Change the ip in ip='186.192.10.122' in the below code to check if the IP is available
Code:
 
awk '$0 ~ ip {print ip " exists in " FILENAME}' ip='186.192.10.122' known_hosts

Thanks for the response, but that won't work as I said the known_hosts is not a plain text, it has been hashed by ssh-keygen.
# 4  
Old 05-15-2014
Check if ssh-keygen on your system supports the -F option. It is used to find hashed hostnames in known_hosts files.
This User Gave Thanks to cero For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Deleted known_hosts file on private server, how do I get it back?

In my ignorance I deleted the known_hosts file on private server. I am not sure what the file type is supposed to be. In general, I have been having problems with ssh and passwords. For some reason, despite having generated a private/public key pair and successfully saving the .pub file onto the... (2 Replies)
Discussion started by: Circuits
2 Replies

2. Shell Programming and Scripting

To check the file and remove header before copying

Hi Guys, I have below directory where there are certain files. Something like below country_dir aus_01.txt nz_01.txt aus_02.txt bd.txt property.txt aus nz bd I need to remove the header of the file which ends with _01.txt while copying from country directory to another... (15 Replies)
Discussion started by: rohit_shinez
15 Replies

3. UNIX for Dummies Questions & Answers

Solaris and known_hosts

Hello, I have a file known_hosts where i want to remove a key, but i don't how to do remove a client on it ? Can you help me please ? Thanks very much (1 Reply)
Discussion started by: jose2204
1 Replies

4. AIX

known_hosts passwordless access

Dears i have one primary server and 4 secondary server i need to access all my secondary servers from the primary server without using the password how do i configure the known_hosts to do this . (1 Reply)
Discussion started by: thecobra151
1 Replies

5. UNIX for Dummies Questions & Answers

hashed commands

How to display hashed commands for your current shell session? Thanks. (1 Reply)
Discussion started by: zhshqzyc
1 Replies

6. Shell Programming and Scripting

Need to remove lines that start with an IP address

Hi, I keep having to remove lines have an IP address as the second field from my awstats logs, as it makes the processing fail. Rather than do it individually each time (once or twice a week) it fails, I'd like to remove any lines from the file that have 3 digits and then a dot as the start... (1 Reply)
Discussion started by: sfisk
1 Replies

7. Shell Programming and Scripting

Check file size and remove files

Hi, Here we have a situation where we have to check the file size and if the file size is greater than 0 bytes then remove the files from the directory. 1)EdwTrxn 2)EdwPost 3)EdwTndr 4)EdwSls 5)EdwSlsRej 6)EdwTndrRej Files will be created in the directory in the following manner. ... (5 Replies)
Discussion started by: srivsn
5 Replies

8. Shell Programming and Scripting

check if argument is an ip address in bash/sh

Hi all, Can you please suggest a few lines of if statement to check if a variable is an ip address purely in bash/sh? Thanks, Marc (3 Replies)
Discussion started by: marcpascual
3 Replies

9. Programming

parsing a string to check if it's an IP address

Hello everybody! I woul quickly need a function bool ParseIPString(char*) that parses a string to check if it's in IP format. thanks in advance for any help! best regards, nadiamihu (1 Reply)
Discussion started by: nadiamihu
1 Replies

10. UNIX for Dummies Questions & Answers

how to remove a logical ip address?

hi, i "accidentedly" added some logical ip address to my solaris 8 machine. now i want to remove them. i already man ifconfig but some how i just keep getting the wrong syntax. this is the command i used to add ifconfig hme0 addif 192.168.100.10 netmask 255.255.2550.0 up so, now... (2 Replies)
Discussion started by: champion
2 Replies
Login or Register to Ask a Question