How To Change 5 port Ip Address Solaris?

Hello i'm newbie in solaris, anybody know how to change five port solaris 10?
exmpe: bge0, bge1, bge2, etc.

anybody can help me with the script implementasi... and logical how solaris work.

thank so much:b:

#ifconfig -a // you can see all ethernet interface
#ifconfig e1000g0 plumb //you can plumb the interface, if there is free interface
#ifconfig e1000g0 192.9.2.106 netmask 255.255.255.0 up // you can assign ip address on related ethernet.

#vi etc/hosts // you can assign permanently ip addresses.
# Internet host table
#
192.168.20.33 localhost.localdomain localhost
192.168.20.34 ethernet interface
192.168.20.35 ethernet interface
192.168.20.36 ethernet interface
192.168.20.37 ethernet interface

virtual interface
#ifconfig e1000g0:1 x.x.x.x netmask 255.255.0.0 up

i hope i could help.

What do you mean by above line? And bge0, bge1, bge2, etc. are not port they are called interface. In case you have to assign the IP to interface then the above post by "getrue" should be a help.

With ifconfig �a its only going to list the interface which has been plumbed. If not then you have to plum the interface and once its visible to system you can assign the required IP.