I was able to get the IP Addresses with the SQL Query below. This was done with Report Builder.
SELECT
dbo.tblPrinters.Computername,
dbo.tblPrinters.Caption,
dbo.tblPrinters.Portname,
dbo.tblPrinters.Printprocessor,
dbo.tblPrinters.Lastchanged
FROM
dbo.tblPrinters
WHERE
dbo.tblPrinters.Local = 'True'
This pulls back all local ports, not just the IP printer ports.
As long as the Portname matches the IP Address (which is the default), you can get the information that you are looking for.