You can probably get away with doing in in SQL:
DECLARE @port int, @stop int, @serverid int
Select @port = 0, @stop = 1000, @serverid = 1
WHILE @port <= @stop
BEGIN
INSERT INTO ServerPorts(ServerID, Port) VALUES(@serverid, @port)
select @port = @port +1
END
You will need to change the port/stop/serverid values, but other than
that, its
an easy way to create sequential ports.
--Dale E. Reed Jr. Emerald and RadiusNT__________________________________________IEA Software, Inc. www.iea-software.com
For more information about this list, including removal,please see http://www.iea-software.com/maillist.html