mirror of
https://github.com/nikdoof/globaltalk-scraper.git
synced 2025-12-13 01:32:22 +00:00
Add README
This commit is contained in:
64
README.md
Normal file
64
README.md
Normal file
@@ -0,0 +1,64 @@
|
||||
# GlobalTalk Scraper
|
||||
|
||||
A script to scrape out a AppleTalk network layout using `netatalk` tools `getzones` and `nbplkup`.
|
||||
|
||||
## Running
|
||||
|
||||
This requires a working `netatalk` installation to work correctly.
|
||||
|
||||
## Example Output
|
||||
|
||||
This is an example of the JSON file produced, filtered down to one Zone.
|
||||
|
||||
```json
|
||||
{
|
||||
"format": "v1",
|
||||
"zones": [
|
||||
"Doofnet",
|
||||
],
|
||||
"nodes": [
|
||||
{
|
||||
"name": "nas-afp",
|
||||
"type": "TimeLord",
|
||||
"address": "5311.212",
|
||||
"port": "129",
|
||||
"zone": "Doofnet"
|
||||
},
|
||||
{
|
||||
"name": "nas-afp",
|
||||
"type": "AFPServer",
|
||||
"address": "5311.212",
|
||||
"port": "128",
|
||||
"zone": "Doofnet"
|
||||
},
|
||||
{
|
||||
"name": "HP LJ Pro 200 Color",
|
||||
"type": "LaserWriter",
|
||||
"address": "5311.212",
|
||||
"port": "130",
|
||||
"zone": "Doofnet"
|
||||
},
|
||||
{
|
||||
"name": "nas-afp",
|
||||
"type": "netatalk",
|
||||
"address": "5311.212",
|
||||
"port": "4",
|
||||
"zone": "Doofnet"
|
||||
},
|
||||
{
|
||||
"name": "nas-afp",
|
||||
"type": "Workstation",
|
||||
"address": "5311.212",
|
||||
"port": "4",
|
||||
"zone": "Doofnet"
|
||||
},
|
||||
{
|
||||
"name": "jrouter v0.0.12",
|
||||
"type": "AppleRouter",
|
||||
"address": "5311.1",
|
||||
"port": "253",
|
||||
"zone": "Doofnet"
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
Reference in New Issue
Block a user