How to change the Ethernet port name and LAN included ports of xdr6086

I want to change the default Ethernet port name and wan port. I currently think of starting from the dts file, but I have no experience with dts files.

/dts-v1/;
#include "mt7986a-tplink-tl-xdr-common.dtsi"

/ {
	model = "TP-Link TL-XDR6086";
	compatible = "tplink,tl-xdr6086", "mediatek,mt7986a";
};

&switch {
	ports {
		#address-cells = <1>;
		#size-cells = <0>;

		port@0 {
			reg = <0>;
			label = "lan1";
		};

		port@5 {
			reg = <5>;
			label = "lan2";
			phy-handle = <&phy5>;
			phy-mode = "2500base-x";
		};

		port@6 {
			reg = <6>;
			ethernet = <&gmac0>;
			phy-mode = "2500base-x";

			fixed-link {
				speed = <2500>;
				full-duplex;
				pause;
			};
		};
	};
};

I mainly want to change port@0 to wan port and port@6 to lan port. Is there any simple way to modify it?