public ExecutionResult ReleaseIPAddress(NetworkInterface networkInterface, IPv6Information info)
        {
            var __Command = $"ifconfig {networkInterface.Name} inet6 {info.Address}/{info.Prefix} delete";

            return(this._Shell.ExecuteCommand(__Command));
        }
        public ExecutionResult AssignIPAddress(NetworkInterface networkInterface, IPv6Information info)
        {
            var __Command = $"ifconfig {networkInterface.Name} inet6 {info.Address} prefixlen {info.Prefix}";

            return(this._Shell.ExecuteCommand(__Command));
        }