У нас вы можете посмотреть бесплатно WiFI232: Implementing a full tcp/ip stack over WiFI232 interface using pppd или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
This video demonstrates a proof of concept of how to implement a full tcp/ip stack on an old school Pentium 1 233mhz mmx machine running RedHat 6.2, by connecting the machine over serial port to a Debian virtual machine using the awesome WiFI232 interface. You can find more information on the WiFI232 here: http://biosrhythm.com/?page_id=1453 The main idea is that: a) you establish a telnet connection to a remote linux machine using WiFI232 and Minicom b) get root privileges on the terminal and run pppd c) detach from minicom (with ctrl+a q) and run pppd on your local machine After doing this, a tcp/ip link is created between the two machines, so you can connect your computer to the internet as if you would back in the 90s, at 19200 baud rate! :D As you can see in the video, there are some snags with packet loss, though I believe those are caused by the small MTU. Anyway, I hope this proof of concept can help others! Server config file: add telnetd support using xinetd root@filtering-appliance:~# cat /etc/xinetd.d/telnetd service telnet { socket_type = stream protocol = tcp wait = no user = root server = /usr/sbin/in.telnetd instances = 20 } root@filtering-appliance:~# cat /etc/hosts 127.0.0.1 localhost 172.16.0.1 filtering-appliance.retro filtering-appliance 172.16.0.2 rh62.retro rh62 root@filtering-appliance:~# cat /etc/ppp/options usehostname domain retro local lock noauth -pap -chap debug mtu 256 connect-delay 5000 172.16.0.1:172.16.0.2 root@filtering-appliance:~# Client config file: [retro@rh62 retro]$ cat /etc/hosts 127.0.0.1 localhost.localdomain localhost 172.16.0.1 filtering-appliance.retro filtering-appliance 172.16.0.2 rh62.retro rh62 [retro@rh62 retro]$ cat /etc/ppp/options usehostname domain retro local lock noauth -pap -chap debug mtu 256 connect-delay 5000 172.16.0.2:172.16.0.1 [retro@rh62 retro]$ UPDATE - For my final configurations and demonstration, check out the following video: • WiFI232: Implementing a full tcp/ip stack ... You can download the VM shown in this video at the following url: https://drive.google.com/open?id=0Bzg... Default ip: 192.168.200.111, user: root pass: wifi232 and user: retro pass: wifi232