@@ -568,7 +568,6 @@ describe('dialup-device', () => {
568568 ppp add PPP ipcp enable ipcp-address on ipcp-dns on ipv6cp enable identifier [email protected] passphrase ppppass keepalive 8 auto-connect ondemand idle-timer 30 569569 dialup-device access-point add AP cid 2 apn example.jp pdp-type ip
570570 dialup-device mdm0 connect-to AP pin 1234 auto-reset-fail-count 10
571- dialup-device mdm0 device-option ux312nc-3g-only on
572571 dialup-device keepalive-send-interval 30
573572 dialup-device keepalive-down-count 20
574573 dialup-device keepalive-timeout 3
@@ -581,7 +580,6 @@ describe('dialup-device', () => {
581580 interface.ppp0.auto-reset-keepalive.down-detect-time: 10
582581 interface.ppp0.auto-reset-keepalive.reply-timeout: 3
583582 interface.ppp0.cid: 2
584- interface.ppp0.device-option.ux312nc-3g-only: enable
585583 interface.ppp0.dialup-device: mdm0
586584 interface.ppp0.id: [email protected] 587585 interface.ppp0.idle-timer: 30
@@ -615,16 +613,29 @@ describe('dialup-device', () => {
615613 ` ) ;
616614 } ) ;
617615
618- it ( 'ux312nc-lte-only is not supported on seil6/seil8 yet' , ( ) => {
616+ it ( 'ux312nc-lte-only is not supported on seil8' , ( ) => {
617+ assertconv ( `
618+ dialup-device access-point add AP apn example.jp
619+ dialup-device mdm0 connect-to AP
620+ dialup-device mdm0 authentication-method chap username foo password bar
621+ dialup-device mdm0 device-option ux312nc-lte-only enable
622+ interface wwan0 over mdm0
623+ ---
624+ interface.wwan0.apn: example.jp
625+ interface.wwan0.auth-method: chap
626+ interface.wwan0.dialup-device: mdm0
627+ interface.wwan0.id: foo
628+ interface.wwan0.password: bar
629+ interface.wwan0.device-option.ux312nc-lte-only: enable
630+ ` , 'w2' ) ;
631+
619632 // warning: incomplete config.
620633 const config_e = `dialup-device mdm0 device-option ux312nc-lte-only enable
621634 interface ppp0 over mdm0` ;
622- assert_notsupported ( config_e , 'w2' ) ;
623635 assert_notsupported ( config_e , 'x4' ) ;
624636
625637 const config_d = `dialup-device mdm0 device-option ux312nc-lte-only disable
626638 interface ppp0 over mdm0` ;
627- assert_notsupported ( config_d , 'w2' ) ;
628639 assert_notsupported ( config_d , 'x4' ) ;
629640 } ) ;
630641} ) ;
@@ -2403,6 +2414,11 @@ describe('route', () => {
24032414 ` ) ;
24042415 } ) ;
24052416 } ) ;
2417+
2418+ it ( 'does not support "route-filter tag / set-tag"' , ( ) => {
2419+ assert_notsupported ( "route dynamic route-filter add A tag 1" ) ;
2420+ assert_notsupported ( "route dynamic route-filter add B set-tag 1" ) ;
2421+ } ) ;
24062422} ) ;
24072423
24082424describe ( 'route6' , ( ) => {
0 commit comments