A very quick and crude way to make bulk changes in RH based systems is to use the replace command. You can find help for the replace command by typing at the prompt. Here is a sample command to change your files in one swoop. Keep in mind that this command is indiscriminate, so it will replace ALL instances of the match with the replacement.
Code:
[root@mybox ~]# replace ip4:11.22.33.44 ip4:55.66.77.88 -- /dir/with/files/*
If your distro does not have replace, then use my personal favorite utility - sed. This is not as hard are most people think and is very powerful (well beyond my simple example below). There is plenty of help on the web at your fingertips with a simple google search. So now to the nitty-gritty:
Code:
[root@mybox ~]# sed -e 's/ip4:11.22.33.44/ip4:55.66.77.88/g' /dir/with/files/*
Simply put this scripts tell sed to '(s)ubstitute/this string/with this string/(g)lobally' in these files
Hope this helps. Be careful and remember that it is always a good idea to make a copy of the files to a new directory and experiment on the copy first. Once the desired results are achieved, then replace your working copies.