I am trying out the DNS forwarding configuration and have created a regexp for an internal domain "example.net"
```
ip dns static add regexp=".*\\.example\\.net\$" forward-to=192.168.5.31
```
and this works, but what if we want to specify two DNS server IPs (primary/failover)... I have tried:
```
ip dns static add regexp=".*\\.example\\.net\$" forward-to=192.168.5.31,192.168.5.30
```
but that seems to fail. Should I create two regexp entires like so:
```
ip dns static add regexp=".*\\.example\\.net\$" forward-to=192.168.5.31
ip dns static add regexp=".*\\.example\\.net\$" forward-to=192.168.5.30
```
or is this scenario not supported?