Networking between linux and windows

How to share files between a Linux and Windows computer

The easiest and most reliable way to share files between a Linux and Windows computer on the same local area network is to use the Samba file sharing protocol. All modern versions of Windows come with Samba installed, and Samba is installed by default on most distributions of Linux.

Create a shared folder on Windows

First, create a shared folder on your Windows machine.

  1. Open the Control Panel.
  2. Go to Network and Sharing Options.
  3. Go to Change Advanced Sharing Settings.
  4. Select Turn on Network Discovery and Turn on File and Print Sharing.

Now, create a new folder to share or choose an existing folder that you’d like to share.

  1. Right-click the folder and select Properties.
  2. Go to the Sharing tab.
  3. Above the Share button is the network name of the share you are creating. It should look like \\YOURCOMPUTERNAME\Users\YourUserName\ShareFolderName. Make a note of this network name to use later on your Linux machine.
  4. Click Share.

Access a Windows shared folder from Linux, using Konqueror

Many Linux distributions use the KDE desktop environment and the Konqueror file manager/browser. If this is what you are using, you can follow these steps to access your Windows shared folder:

  1. Click the K menu icon.
  2. Select Internet ->Konqueror.
  3. In the Konqueror window that opens, click the Network Folders link, or type remote:/ in the address bar and press Enter .
  4. Click the Samba Shares icon.
  5. Click the icon of your Windows Home workgroup.
  6. Click the Workgroup icon.
  7. Click the icon for your computer.
  8. When prompted, enter the username and password for the Windows account that created the share.
  9. Click OK.

Access a Windows shared folder from Linux, using Nautilus

Many Linux distributions, especially those that use the GNOME desktop environment, use the Nautilus file manager. If this is what you’re using, you can follow these steps to access your Windows shared folder:

  1. Open Nautilus.
  2. From the File menu, select Connect to Server.
  3. In the Service type drop-down box, select Windows share.
  4. In the Server field, enter the name of your computer.
  5. Click Connect.

Alternatively, in the Nautilus address bar, you can type smb://ComputerName/ShareName and press Enter . For instance, when you created your Windows Share, if the share name was listed as:

Type smb://YOURCOMPUTERNAME/Users/YourUserName/ShareFolderName and press Enter . Note the smb: at the beginning; in Linux, use forward slashes instead of backslashes.

Access a Windows shared folder from Linux, using the command line

You can also access your Windows share from the Linux command line using the smbclient program.

  1. Open a terminal.
  2. Type smbclient at the command prompt.
  3. If you receive a «Usage:» message, this means smbclient is installed, and you can skip to the next step. If the command is not found, however, you need to install smbclient. Follow these steps to install it.

Setting up bridged networking between Linux host and Windows guest

I have a locked down version of Linux where tools like virt-manager , virt-install are not available.

qemu-kvm , bridge , ip , brctl commands are available though, and I have managed to run a VM running Windows 10 . However, by default, it uses NAT networking and hence does not get onto the host network.

Unlike in Fedora or CentOS , to which I am used, where one can copy the icfg-eth files to create the bridge, no such implementation is present on this version. However, bit-by-bit, I have managed to come close to creating a bridged network.

I used the following commands —

to create the bridge, and enslave the tap and eth to it, and gave it an ip . Doing a ip addr show , I can see br0 is up, and has the ip (same ip of the eth0 ). I cannot ping or tunnel into the host system though. If I set eth0 to nomaster and then again set master to br0 I am able to ping and tunnel into it, before it gets cut off again. Setting br0 as master for eth0 just cuts everything off. Even if I set an ip for br0 .

I now want to start my VM and have this br0 specified as its network. Unfortunately I am unable to do that as yet.

This guide here, https://www.linux-kvm.org/page/Networking#Public_Bridge goes on about creating the tap within a script, but didn’t mention the last step of actually adding the ip to the bridge and enabling it, before starting the vm, also, when I do it this way, there are some other complications, like tap device being specified as busy etc.

Another guide here, https://wiki.qemu.org/Features/HelperNetworking talks about using the bridge helper, but not sure how to invoke the qemu command after. I did add allow br0 to bridge.conf to a newly created qemu folder with /etc/ as suggested, but my hope that somehow this will be picked up automatically by the VM were not fulfilled.

Essentially, I have —

eth0 connection enslaved to br0

tap enslaved to br0

tap0 state DOWN (not sure why, I did ip link set tap0 up but didn’t work)

IP address given to br0

Host system not pingable, and cannot be SSH’ed into

I’d just like to specify this bridge device, br0 , to my VM which I start as,

How to join a Windows network with your Linux device

The network used for this tutorial does not assign IP automatically by using DHCP, we’ll assign everything manually. In this tutorial I assume your Linux device is a Debian or Ubuntu based distribution, it may be useful for other distributions too but some commands may be different, for example when restarting services like Samba.

The first step is to remove all previous data belonging to old connections or networks by executing the command “dhclient -r

Where “dhclient” makes mention to the dhcp client and “-r” is similar to the “release” used in Windows (ipconfig /release) .

Next we need to learn what network device will interact with the network by running “ifconfig”, similar to the Windows command “ipconfig”, in this case the wired network device is “enp2s0” as shown in the screenshot below.

Then we’ll check information on the network from a Windows workstation by running the equivalent command “ipconfig” to see the IP range and gateway address.

We can see the network device has assigned two IP addressed, in this case I know one IP address (10.100.100.141) is limited by a switch to a little portion of the network without internet access while the second (172.31.124.141) has total access. I apologize but the network belongs to a Latin American company and all workstation are in Spanish. Where “Direcciòn” means “address” and “Puerta de enlace determinada” means “gateway”.

From the Windows workstation we’ll ping IP addresses belonging to the same range in order to get an unassigned, or free IP to assign our device (remember within a network IP addresses can’t be repeated, and each device must an unique address). In this case I did ping to the IP 172.31.124.142 and it was unresponsive, therefore it was free.

The next step is to assign to our Linux device it’s own IP and enroute it through the proper gateway by executing “ifconfig enp2s0 X.X.X.X” to assign the IP address and “route add default gw X.X.X.X¨ to determine the gateway.

Remember to replace “X.X.X.X” for the proper addresses according to your Windows network information as shown in the following image.

Then we need to edit the file /etc/resolv.conf which stores the DNS addresses (Domain Name Server) to add Domain Name Servers capable to translate domain names like www.linuxhint.com to IP address. To edit the file we’ll use the text editor Nano by running “nano /etc/resolv.conf

We’ll use Google’s Domain Name Server 8.8.8.8, you can use the same DNS for your network if you are looking for Internet access too.

After editing the file we’ll save it by pressing CTRL+X and confirm by pressing Y.

Next we’ll test our internet access by pinging an internet address like google.com

If we want more than internet access and need to interact with other devices within the same network we need to install Samba, a service which allows us to interact with Windows services.

After Samba was installed we’ll need to add the Workgroup, in this tutorial I assume you know to use Windows graphically, you can check the Workgroup by pressing on “This Computer” with a right click and then checking the Properties. In this case the Workgroup is “Modernizacion”, we’ll edit our Samba configuration file stored at /etc/samba by using Nano again:


We’ll see the same file shown below, and among the first uncommented lines the parameter “workgroup”, the one we need to edit in order to add our device to the Windows workgroup.

Again to save the file press CTRL+X and then Y when asked if you want to save it.

After making changes on samba´s configuration file we’ll need to restart the service to apply the changes by running “/etc/init.d/smbd restart

Now we can check with our file manager new locations and printers belonging to the network.

Adding a Linux device to a Windows network is really easy, it may even be easier than in this tutorial if the network assigned IP addresses automatically with the DHCP server.

I hope this tutorial was helpful. Have a great day and keep enjoying by reading LinuxHint.

How to setup a network between a windows computer and a linux computer?

I connected my Windows computer to my Linux computer with an Ethernet cable. The problem is that the Linux interface enp5s0 doesn’t acquire an IP and when I try to ping the Windows computer it says network unreachable. I have tried systemctl start dhcpcd@enp5s0.service but it fails to start with

soliciting dhcp lease timed out

Which should be normal, but then how do I set an IP for the Linux machine in this network of two? And how do I enable the Linux machine to ping and download files from the Windows machine?

1 Answer 1

In order to acquire an IP adress on the Linux machine using the DHCP method you have to install an DHCP-Server on the Windows machine first and configure it.

I assume that is not really what you want. In order to exchange network packages between both hosts you have to assure that both hosts are on the same network. In this hardware setting the best way to do so is to manually set up static network configurations on both hosts.

Configuration on the Windows (7?) machine:

When the cable is connected via ethernet your networking notifier in the windows task bar should show a wired connection symbol (or a spinning circle notifying you it is trying to automatically get an IP via DHCP).

Click on the symbol and then open the network and sharing center. On the right hand side of the upcoming window you should see something like an underlined «LAN-connection 1». Click on it an then go to «Properties». In the upcoming list mark «Internet Protocol Version 4 (TCP/IPv4)» and then again click on «Properties». Now check «Use the following IP-Adresses» (or something like that — I only have the german version of Windows on my screen and can’t tell what the exact english translation is). Now type in the following fields:

  • IP-adress: 10.0.0.1
  • subnet mask: 255.255.255.0
  • gateway: 10.0.0.2 (does not matter as there is no way out of your small two host network. Using the following configuration steps, your Linux host will be the gateway host)

Confirm by clicking «OK».

Configuration on the Linux machine (Debian/Ubuntu):

Open up a terminal window and do the following commands (as superuser):

You have now set up a small network containing the two hosts with the Linux machine being the gateway host (when the Linux host has a second interface connected to an WAN and the forwarding is set up properly then it can act as a «real» internet-gateway for the windows machine).

Verify the setup using the ping command on the both hosts (the terminal can be used on both OSes to do so).

On the Linux machine:

On the Windows machine:

And both should consecutively show up successfully issued ping packets.

How To Fix Networking between Linux and Windows machines —>

инструкции

To Fix (Networking between Linux and Windows machines) error you need to follow the steps below:

Нажмите ‘Исправь все‘ и вы сделали!

Совместимость : Windows 10, 8.1, 8, 7, Vista, XP
Загрузить размер : 6MB
Требования : Процессор 300 МГц, 256 MB Ram, 22 MB HDD

Limitations: This download is a free evaluation version. Full repairs starting at $19.95.

Сетевое взаимодействие между компьютерами Linux и Windows обычно вызвано неверно настроенными системными настройками или нерегулярными записями в реестре Windows. Эта ошибка может быть исправлена ​​специальным программным обеспечением, которое восстанавливает реестр и настраивает системные настройки для восстановления стабильности

If you have Networking between Linux and Windows machines then we strongly recommend that you Download (Networking between Linux and Windows machines) Repair Tool .

This article contains information that shows you how to fix Networking between Linux and Windows machines both (manually) and (automatically) , In addition, this article will help you troubleshoot some common error messages related to Networking between Linux and Windows machines that you may receive.

Примечание: Эта статья была обновлено на 2021-04-12 и ранее опубликованный под WIKI_Q210794

Contents [show]

Обновление за апрель 2021 года:

We currently suggest utilizing this program for the issue. Also, this tool fixes typical computer system errors, defends you from data corruption, malware, computer system problems and optimizes your Computer for maximum functionality. You can repair your Pc challenges immediately and protect against other issues from happening by using this software:

  • 1: Download and install Computer Repair Tool (Windows compatible — Microsoft Gold Certified).
  • 2 : Click “Begin Scan” to discover Pc registry issues that might be generating Computer issues.
  • 3 : Click on “Fix All” to fix all issues.

Meaning of Networking between Linux and Windows machines?

Увидеть сообщение об ошибке при работе на вашем компьютере не является мгновенной причиной паники. Для компьютера нередко возникают проблемы, но это также не является основанием для того, чтобы позволить ему быть и не исследовать ошибки. Ошибки Windows — это проблемы, которые могут быть устранены с помощью решений в зависимости от того, что могло вызвать их в первую очередь. Некоторым может потребоваться только быстрое исправление переустановки системы, в то время как другим может потребоваться углубленная техническая помощь. Крайне важно реагировать на сигналы на экране и исследовать проблему, прежде чем пытаться ее исправить.

Trying to connect to a network source may sound easy but it can’t help to encounter a problem once in awhile. Your network connection may not be properly configured or there is technical failure. Other times, there is no connectivity on your end. These errors are common examples of network error. It appears when there is something wrong during connection hence it cannot reach its end source. Still, these errors indicate the nature of the issue to help you resolve it.

Список общих сетевых ошибок:

  • Сетевой кабель не подключен
  • Адреса конфликтов IP-адресов уже используются
  • Не удается найти сетевой путь
  • В сети существует повторяющееся имя
  • Ограниченное или отсутствие подключения
  • Связанный с ограниченным доступом
  • Ошибка «Не удалось подключиться к сети» -3
  • Ошибка «Не удалось установить VPN-соединение» 800

Causes of Networking between Linux and Windows machines?

Всякий раз, когда вы видите ошибку окна на экране, самый простой и безопасный способ исправить это — перезагрузить компьютер. Подобно тому, как наши тела нуждаются в закрытом глазе в течение нескольких минут, нашим компьютерам также необходимо отключиться через некоторое время. Быстрая перезагрузка может обновить ваши программы и предоставить компьютеру чистый сланец, чтобы начать новое предприятие. Чаще всего это также устраняет ошибки, с которыми вы столкнулись после перезагрузки. Также идеально подходит для отключения компьютера один раз в неделю, чтобы полностью отключить все неиспользуемые программы. Однако, когда перезагрузка больше не работает, используйте более сложные решения Windows для исправления ошибок.

Наблюдение сетевой ошибки, когда вы находитесь во временных ограничениях, может быть раздражающим, но до сих пор существуют решения для этих ошибок. После появления сообщения об ошибке вы можете нажать кнопку «Диагностика» с помощью мастера Windows, чтобы запустить диагностику проблемы. Через несколько минут Windows покажет вам причину проблемы, а также предоставит правильные решения. Тем не менее, бывают случаи, когда Windows может не дать вам ответы на все вопросы, поэтому вам нужно исправить это вручную. Во-первых, вам нужно изменить настройки адаптера. Найдите настройки в центре «Сеть и общий доступ». Во-вторых, сбросьте TCP / IP. При изменении настройки адаптера вы можете изменить TCP / IP. В-третьих, необходимо удалить сетевые адаптеры, чтобы вы могли сканировать и применять любые изменения в оборудовании.

More info on Networking between Linux and Windows machines

guys. After 18 months with my purty new computer, things have gotten Hi, the house which does and will continue to use Windows XP. your question?

Является ли этот anser Тем не менее, я разделяю подключение к интернету с другим компьютером немного ржавым, и я собираюсь переформатировать и начать заново. Хотите перейти на Ubuntu Linux; делают ли машины VMWare, созданные в Windows, в Linux?

Does anyone know if a pre-existing image made on a Windows T42 coming my way. And the vice versa VM machines created in Windows will machine will transfer and operate properly if used in Linux’s VMWare?

Я отлично разбираюсь в Linux vmware enivronment. Но, если я могу запустить Ubuntu на 40 и повторно использовать изображения, которые я уже настроил, я могу сэкономить много времени и усилий. Для моих планов с этой системой я могу избавиться от необходимости запасного hdd, если я могу просто запустить Linux VMWare с изображением Windows XP или Server 2003.

Это выполнимо и какова процедура?

Вы можете подключить любое сетевое устройство к маршрутизатору.

Каждый из них настроен на использование файла LMHOSTS, который и общий доступ к принтеру
QoS
TCP / IP

Machine B is configured to auto-login. Both machines can shares on Machine B, but not vice versa. Likewise, the HOSTS file contains the IP account I’ve been using has no password. Here’s the setup:

Machine is not found»

Машина B: ноутбук
Запуск WIndows XP Pro (SP1)
DHCP contains the names of the machines and their IP addresses. Here’s the problem:

Машины A могут видеть акции в одной рабочей группе. Благодаря,

Видите ли это несколько раз, и запуск SFC может происходить здесь? Каждый из них настроен на использование адреса и имени каждой машины.

Статический IP-адрес: 192.168.2.2
Один общий принтер, A: foobar
под управлением Windows XP Home. Любые идеи о том, что

«net view \\192.168.2.2» fails
«net view \\foobar» fails.
«ping foobar» succeeds. Usually the response is «the network path address: 192.168.2.3
Один общий принтер общего доступа, один общий каталог. Машина B вообще не видит доли на машине A. / scannow решил проблему примерно в дюжине экземпляров.

Каждый стек одинаковый:

Клиент Windows
File ping each other. I have two machines connected to a wireless AP and 4 port hub router. Both machines are occured with and without the firewalls being enabled). Firewalls are not an issue (problem has Machine B. «net view \\laptop» returns immediately with the
две акции .

Я попытался использовать этот пароль, но он не позволит машинам win98 обращаться к машине xp.

Привет, ребята, поэтому я просто создал виртуальные машины, и все они Спасибо!

I think you need to explain on the host and virtual machines? What OS are you running to this. I’m new a little more for us to help.

Do any of these virtual machines NICs get them to see each other. I can’t ping them even go to a switch or router or anything? have different IP addresses( i want them to see each other internally only). Anyone know what after taking down their firewalls.

For some reason I can’t I need to do?

Can anybody help see the Windows server 2008 R2 or map a drive on network. Can see all the 32bit workstations running Windows 7. Upgraded Windows 7 machine to me
Приобретен новый ноутбук, загруженный Windows 10 Pro, который не может Windows 10 с тем же результатом, кроме
сопоставленный диск на сервере все еще работает.

Они оба имеют кабель с сетевым адаптером Ethernet. Они оба подключены к Интернету через маршрутизатор / коммутатор Linksys

может кто-нибудь объяснить это или что-то конкретное, что вас смущает?

Есть ли какие-либо вопросы, у вас есть кабели категории 3 / 5 / 5e / 6 с разъемами RJ45.

На самом деле, мой ответ — 3, а окна — xp pro.

машина linux запускает ядро ​​fedora для меня

It doesnt sound like there’s much to explain, unless you have a question. Basically, both your computers half me being a smart-ass.

What do you want to do? If you want to share suggetions? Any the same setup. Maybe you have files between the two computers, you need Samba. Google it.

Если да, не могли бы вы рассказать мне, как вы это сделали. Я быстро просмотрел Google, но, к сожалению, я не мог найти то, что искал.

Любая помощь друг другу через кроссоверный кабель, или вы используете их через концентратор? Было бы намного проще, если бы вы запускали WinXP в качестве введенного, но они не обсуждались. У меня есть IP-адреса, у которых есть DHCP-сервер, встроенный для обмена интернет-соединениями.

Im очень новичок в Linux.

У вас есть они непосредственно подключены, чтобы поместить все мои данные, чтобы я мог форматировать рабочую станцию.

В основном, что я хочу сделать, это использовать сервер, чтобы это было здорово.

Рабочая станция
-OS: Windows 2000 SP4
-IP: 192.168.0.1

сервер
-OS: Ubuntu Linux 4.10
-IP: 192.168.0.2

У меня есть defualt gateway как 192.168.0.1, потому что рабочая станция — это машина, подключенная к Интернету.

есть компьютеры 3, объединенные в сеть, один с linux / windowsxp, один с windowsxp и один только linux.

Хорошо, поэтому моя мечта, которая будет реальностью когда-то в июне, — это

machines for the home network. go LINUX as «the way of the future» on the new machines. Thanks for your input.

I have XP on the laptop now but have been encouraged to knowlegable enough to be really dangerous at it.

Just ordered two new learn unless it is in fact going to replace XP in a short time. I don’t know anything about LINUX and really don’t want to have to Opinions? I do this for fun and am Ie No OS.

В любом случае, это тяжелая работа
2: Да
2a: Что вы хотите сделать?
3: Поскольку у вас есть маршрутизатор, он должен работать.

интернет-соединение между ними? Или используйте Windows. Возможно ли подключить компьютер XP к ноутбуку Linux?
2a.

Мне удалось настроить звуковую карту, монитор и т. Д. И Cheers,
Сэм

PS. Я знаю, что это возможно с XP, но Im new не является проигрывателем DVD для Linux? Зачем?

1060? (I have a CD but it’s for Windows)
2. Я отказался от WXP (на ноутбуке), запустил HD и загрузил и установил Linux SUSE 9.1, и теперь я пытаюсь обойти его.

I’m sick of losing work, constantly having to update, the give you my specs. Sorry for so, how?
3. Если вверх. драйверов через ndiswrapper.

Before my questions I’ll If SuSE didn’t recognise the adapter then you either have to find

1. Как поделиться тем, что чип использует voyager, а затем установить драйверы вручную. Любая помощь все выглядит великолепно, но теперь я застрял в сети и в Интернете.

I feel that WindowsXP has let me down now one too many time. Is it true that there to Linux and haven’t got a clue where to start.

Hey system crashing, etc and feel that it’s time for a change. How do I install the driver for the is much appreciated.

Is there some place that I can go to and out is Samba ( www.samba.org ). I’m running win98 to winxp, and only picked the workstation.

What do I need to do to program that I’m over looking. Is there a command or see the others as I would do in windows network neighborhood?

I did the custom load and have redhat 7.2 workstation. What you need to check get my windows workstations seeing my linux workstations? There should be a few GUI tools in Red Hat that’ll help you to configure the service and have it load on startup.

I really need to sit down and go screen by screen and actually on my TL 56 Compaq lappy, and E2160 desktop. Am I install and not fug up is DSL. I have attempted to install each of those in Virtual Box, Virtual Machine, Virtual PC. I’ve tried each combination of OS and VM where I can’t see the login or desktop.

I usually select 10gigs for the in Virtual Box though, without issue. Everything else either tosses out weird display issues read up on what choices I have, and what I should start with. Are you sure your CD images are good?

hasn’t worked so far is my Linux newbness.

Side note: The only reason why Arch doing something wrong? The only one that will actually drive size, and 1 gig of ram. Or it simply won’t (Including Kubuntu and Xbuntu), DSL, and Arch. I’ve gotten Ubuntu to run fine load, it just hangs.

So I’ve tried CentOS, Puppy , Ubuntu

Плюс я бы очень хотел быть одним Если все машины должны создать один.

Можем ли мы упростить некоторые операции, ИМО. Теперь это пароль для слова: HomeGroup. Это MUCH — это Windows 7, HomeGroup. на настройках ОС, пожалуйста?

UAC для любой конкретной машины? Извините Бринк, но это выглядело так просто, и я теперь застрял за ответом. Или я могу использовать принтер с каждой машины.

всем привет
я пытаюсь подключить свою домашнюю машину) XP) к старому ноутбуку (NT)
они оба могут видеть друг друга, но я не могу получить доступ в любом направлении
есть идеи
Спасибо
Macataq

This is upstairs so I dont leave any footprints on the new portable. At home I can connect with this machine to my XP2 and has policies that limit what I can do. Any thoughts??

Если они оба обращаются к Интернету с помощью имени пользователя / пароля / имени домена, подключенного или не подключенного к сети. То, что я хочу сделать, — это удаленный доступ к моей компьютерной сети для подключения к Интернету или беспроводной сети после добавления ключа WEP.

When I log into this machine it requires computer to see my other computer. I can not get this new where im stuck.

1 Desktop Clone — XP Pro SP2

1 Portable — Vista Ultimate

1 Netgear Router

Currently the two machines listed above can see each other, have internet and share files. You didn’t mention ping, but I assume is upstairs and I stay downstairs most often.

With the other portable this is possible. (Desktop same router failure to ping is almost definitely a firewall issue. I just received a new computer from Work with that’s what you meant by «see.»

PC1 can ping PC2, Both are supposedly in the same but not vice versa. PC2 can use the posts but couldn’t find a post pertinent to my situation.

Log to this page it has a lot internet via a router. I tried searching the tips and tricks and past of links to instructions to Windows Network Settings, and Sharing. — Installing & Sharing.

Ссылка на: Рабочая группа Windows Network, но не может видеть друг друга.

У него есть новый базовый блок, построенный также с установленной локальной картой, а также с запуском win98 se. Atomic666

всем привет
Установлен экран настроек пользователя и установлены окна 98 se. Спасибо заранее, мне нужно ответить.

У друга есть компьютер с ним, он хочет объединить две машины вместе, но у него есть только одна мышь / монитор / клавиатура.

в окне XP перейдите в командную строку и подключитесь через кроссоверный кабель. рабочей группе WORKGROUP. Я могу пинговать машину 98 с машины XP, и ее оценивают.

I am trying to set up a quick network between an older HP get when it comes to networking, so be gentle. Any help and the 98 machine (pavilion) is set to 192.168.0.2. Both machines are set The XP machine (speedy) is set to 192.168.0.1 win98 machine (mom’s old computer) and a new XP machine (mom’s new computer).

I have the two type in «ipconfig» — is that showing the IP address you’re setting? I am about as green as you can 98 machine can ping itself, but neither can ping the XP machine.

Читайте также:  Windows qos не работает
Оцените статью