Hi Doug,
The X250e does not support user-created VRs. However, based on your description, it sounds like you just need to set up two vlans, and give them IP addresses.
create vlan v100 create vlan v200 configure vlan v100 tag 100 configure vlan v200 tag 200 configure vlan v100 ipaddress 10.10.10.1/24 configure vlan v200 ipaddress 192.168.1.1/24Then, you can add ports to the vlans as desired.
configure vlan v100 add port 1-5 untagged configure vlan v200 add port 6-10 untagged configure vlan v100 add port 48 tagged configure vlan v200 add port 48 tagged
If you want the X250e to route traffic between these vlans, you will also need to enable IP forwarding on both of the vlans. If there is another device that will be routing traffic, then this is not needed.
enable ipforwarding vlan v100 enable ipforwarding vlan v200 -Brandon