How to grep/awk/egrep two values for given output?

Dear Friends,

I have a command which can result following output.

Packet is: /var/adm/yyyy/pkt6043
Intended for network [replica]: /vob/repo

I would like to retrive
pkt6043 and /vob/repo using single command.

Blue color test will be always contstant and red color text will be dynamic

Thanks
Bala

Is this what you mean with retrieve?

sed 's|^P.*/||;s|^I.* ||'
pkt6043
/vob/repo

Thank your very much Scrutinizer - That worked.