delete duplicate rows with awk files

Hi every body

I have some text file with a lots of duplicate rows like this:

165.179.568.197
154.893.836.174
242.473.396.153
165.179.568.197
165.179.568.197
165.179.568.197
154.893.836.174

how can I delete the repeated rows?

Thanks
Saeideh

sort -u file_name

sort filename | uniq -d