Difference between revisions of "Networking Cable"
From ComputerCraft Wiki
Bomb Bloke (Talk | contribs) |
Magiczocker (Talk | contribs) m |
||
(2 intermediate revisions by the same user not shown) | |||
Line 9: | Line 9: | ||
Networking cable is used to establish network connections between [[computer]]s and [[peripheral]]s. To connect networking cable to a computer or peripheral, computercraft uses [[Wired Modem]]s which can be attached to the sides of appropriate computercraft blocks. This means that networking cable can be set up next to a computer without connecting the computer to the network if the player doesn't choose to attach a modem there. | Networking cable is used to establish network connections between [[computer]]s and [[peripheral]]s. To connect networking cable to a computer or peripheral, computercraft uses [[Wired Modem]]s which can be attached to the sides of appropriate computercraft blocks. This means that networking cable can be set up next to a computer without connecting the computer to the network if the player doesn't choose to attach a modem there. | ||
− | == | + | == Crafting == |
− | + | {{Crafting | |
− | + | |B1=Stone | |
− | + | |A2=Stone |B2=Redstone |C2=Stone | |
− | + | |B3=Stone | |
− | | | + | |Output=Networking Cable |OA=6 |
− | |A2=Stone |B2=Redstone | + | }} |
− | + | ||
− | |Output= | + | |
− | + | ||
− | + | ||
− | + | ||
==Advantages== | ==Advantages== | ||
− | * '''Reliability:''' Networks created using networking cable are more reliable than wireless networks because [[Wireless Modem]]s have their range drastically reduced during thunderstorms, whereas wired modems have a maximum range of 256 cable segments regardless of weather. Networks using networking cables will work as long their cables and endpoints are within loaded [ | + | * '''Reliability:''' Networks created using networking cable are more reliable than wireless networks because [[Wireless Modem]]s have their range drastically reduced during thunderstorms, whereas wired modems have a maximum range of 256 cable segments regardless of weather. Networks using networking cables will work as long their cables and endpoints are within loaded [https://minecraft.gamepedia.com/Chunk chunks]. |
* '''Stealth:''' Networking cable can be helpful in multiplayer games when players want to establish hidden bases. Any wireless transmission can be picked up by another wireless receiver in range if the receiver is listening on the appropriate channel. This can alert hostile players to the presence of a secret base and even allow them to triangulate the transmission source. Networking cables can't be tapped into unless physically located and accessed. | * '''Stealth:''' Networking cable can be helpful in multiplayer games when players want to establish hidden bases. Any wireless transmission can be picked up by another wireless receiver in range if the receiver is listening on the appropriate channel. This can alert hostile players to the presence of a secret base and even allow them to triangulate the transmission source. Networking cables can't be tapped into unless physically located and accessed. | ||
− | * '''Low cost:''' When players have few resources available, it is generally easier to get [ | + | * '''Low cost:''' When players have few resources available, it is generally easier to get [https://minecraft.gamepedia.com/Redstone_dust redstone dust] and [[stone]] for both networking cables and wired modems than it is to get a [https://minecraft.gamepedia.com/Ender_pearl ender pearls], which are required for wireless modems. |
* '''Remote peripheral access:''' Computers may access peripherals connected via network cabling as if they were directly adjacent. Not so with wireless modems, short of scripted work-arounds. | * '''Remote peripheral access:''' Computers may access peripherals connected via network cabling as if they were directly adjacent. Not so with wireless modems, short of scripted work-arounds. | ||
− | ==Disadvantages== | + | == Disadvantages == |
* '''Fixed position:''' Wired networks are great for controlling doors, dispensers, printers, cobble generators, and other equipment which stays in place, but they are not feasible for communicating with turtles which move around for mining and construction. Turtles can be programmed to periodically return for updates, but this is inconvenient. | * '''Fixed position:''' Wired networks are great for controlling doors, dispensers, printers, cobble generators, and other equipment which stays in place, but they are not feasible for communicating with turtles which move around for mining and construction. Turtles can be programmed to periodically return for updates, but this is inconvenient. | ||
* '''Limited turtle compatibility:''' [[Turtle]]s cannot be equipped with wired modems, so the best means of getting a turtle to communicate over a wired network would involve using the [[Redstone (API)|redstone API]] to exchange data in binary or analog format with a computer which is on the network, or using a [[Disk Drive]] attached to the network and exchanging messages by manipulating files on the drive. This isn't an impossible problem to solve, but it is an annoyance compared to exchanging messages using standard network protocols via a wireless modem. | * '''Limited turtle compatibility:''' [[Turtle]]s cannot be equipped with wired modems, so the best means of getting a turtle to communicate over a wired network would involve using the [[Redstone (API)|redstone API]] to exchange data in binary or analog format with a computer which is on the network, or using a [[Disk Drive]] attached to the network and exchanging messages by manipulating files on the drive. This isn't an impossible problem to solve, but it is an annoyance compared to exchanging messages using standard network protocols via a wireless modem. | ||
+ | |||
+ | == History == | ||
+ | {{History|head}} | ||
+ | {{History|1.51|Added Networking Cables.}} | ||
+ | {{History|foot}} | ||
{{BlocksItemsList}} | {{BlocksItemsList}} | ||
[[Category:Blocks]] | [[Category:Blocks]] |
Latest revision as of 07:05, 4 August 2020
Networking cable is used to establish network connections between computers and peripherals. To connect networking cable to a computer or peripheral, computercraft uses Wired Modems which can be attached to the sides of appropriate computercraft blocks. This means that networking cable can be set up next to a computer without connecting the computer to the network if the player doesn't choose to attach a modem there.
Contents
Crafting
Advantages
- Reliability: Networks created using networking cable are more reliable than wireless networks because Wireless Modems have their range drastically reduced during thunderstorms, whereas wired modems have a maximum range of 256 cable segments regardless of weather. Networks using networking cables will work as long their cables and endpoints are within loaded chunks.
- Stealth: Networking cable can be helpful in multiplayer games when players want to establish hidden bases. Any wireless transmission can be picked up by another wireless receiver in range if the receiver is listening on the appropriate channel. This can alert hostile players to the presence of a secret base and even allow them to triangulate the transmission source. Networking cables can't be tapped into unless physically located and accessed.
- Low cost: When players have few resources available, it is generally easier to get redstone dust and stone for both networking cables and wired modems than it is to get a ender pearls, which are required for wireless modems.
- Remote peripheral access: Computers may access peripherals connected via network cabling as if they were directly adjacent. Not so with wireless modems, short of scripted work-arounds.
Disadvantages
- Fixed position: Wired networks are great for controlling doors, dispensers, printers, cobble generators, and other equipment which stays in place, but they are not feasible for communicating with turtles which move around for mining and construction. Turtles can be programmed to periodically return for updates, but this is inconvenient.
- Limited turtle compatibility: Turtles cannot be equipped with wired modems, so the best means of getting a turtle to communicate over a wired network would involve using the redstone API to exchange data in binary or analog format with a computer which is on the network, or using a Disk Drive attached to the network and exchanging messages by manipulating files on the drive. This isn't an impossible problem to solve, but it is an annoyance compared to exchanging messages using standard network protocols via a wireless modem.
History
1.51 | Added Networking Cables. |
---|
ComputerCraft Blocks and Items | |||
Blocks | |||
Computer | Advanced Computer | Command Computer | Disk Drive |
Monitor | Advanced Monitor | Printer | Turtle |
Wireless Modem | Ender Modem | Wired Modem | Networking Cable |
Items | |||
Pocket Computer | Advanced Pocket Computer | Floppy Disk | Printed Page |
Printed Pages | Printed Book |