The following illustrates configurations for dial-in and callback operations.
Configuration to Accept All Incoming Calls
- [edit interfaces]
- dl0 {
- encapsulationppp;
-
- unit 0 {
-
- dialer-options {
- dial-string 7031231282;
- incoming-map;
- accept-all;
- }
- pool 2;
-
- family inet {
- address 10.1.1.2;
- }
- }
- }
Configuration to Accept Calls from a Specific Caller ID
- [edit interfaces]
- dl0 {
- encapsulationppp;
-
- unit 0 {
-
- dialer-options {
-
- incoming-map {
- caller 14082711234;
- }
- pool 1;
-
- family inet {
- address 20.1.1.1;
- }
- }
- }
- }
Configuration to Call Back Calls from a Specific Caller ID
- [edit interfaces]
- dl0 {
- encapsulation ppp;
-
- unit 0 {
-
- dialer-options {
-
- incoming-map {
- caller 14082711234;
- }
- callback;
- callback-wait-period 2;
- pool 1;
-
- family inet {
- address 20.1.1.1;
- }
- }
- }
- }