Hi guys,
I have some issue to understand one thing: at page 409 of the ICND Odom's book, is an example of hybrid addressing on a Frame relay network, a fully meshed part with multiple DTEs all within the same subnet and some pair of DTE who shares one subnet and one PVC.
Like in this pic (colorful lines are PVCs):

He says that
IARP is enabled by default on multipoint subinterfaces while
disabled on point-to-point subinterfaces. I take that for good, but when he goes to configure the multipoint subinterfaces on Router1, 2 and 3, he uses the
frame-relay interface-dlci command in order to manually mapping DLCIs<--->IPaddresses.
This is the configuration he makes, I adapted it to my scenario, but I assure it is identical in the meaning:
hostname Router1
!
interface serial1/0
encapsulation frame-relay
!
interface serial 1/0.1 multipoint
ip address 129.5.6.1 255.255.255.0
frame-relay interface-dlci 60
frame-relay interface-dlci 70
!
interface serial1/0.2 point-to-point
ip address 147.8.8.1 255.255.255.0
frame-relay interface-dlci 80
!
interface serial 1/0.3 point-to-point
ip address 170.2.2.1 255.255.255.0
frame-relay interface-dlci 90
!
In the DTEs who share one only PVC, he makes one subinterface per DTE and he configure them as follows (show ocnfig of router4):
hostname Router4
!
interface serial1/0
encapsulation frame-relay
!
interface serial1/0.1 point-to-point
ip address 147.8.8.2 255.255.255.0
frame-relay interface-dlci 50
Based on the statements above, seems to me much strange that the configurations are identical on point-to-point subinterfaces and multipoint.
Anyone who wants to spend some word on this stuff would be much appreciated.
Thank You.