forked from irchelp/irchelp.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnetlist.yaml
More file actions
2311 lines (2304 loc) · 52.7 KB
/
netlist.yaml
File metadata and controls
2311 lines (2304 loc) · 52.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# vim: set ts=2 sw=2 et:
%YAML 1.2
---
property:
lastchange: May 2025
groups:
- '[small](small.html)'
- '[regional](regional.html)'
- '[topical](topical.html)'
- '[general](general.html)'
- '[popular](popular.html)'
emptynet:
image:
homepage:
irchelp:
webchat:
slocation:
services:
support_channels:
information: >
nix
nix
servers:
- server
webserverlist:
webstatistic:
category:
- mytest
status: down
check:
server:
localtest:
homepage: 'http://localhost:4000/networks/popular.html'
slocation: da heim
services: atheme
support_channels: '#test'
information: >
my test server
and hier noch ein wenig text
servers:
- localhost
category:
- mytest
status: active
check:
server: 'localhost:5000'
tilde.chat:
image:
homepage: 'https://tilde.chat/'
irchelp:
webchat: 'https://tilde.chat/gamja/'
slocation:
services: nickserv, chanserv, hostserv
support_channels: '#helpdesk'
information: >
tilde.chat is the irc network of the tildeverse, an association of social
unix servers built as an intentional community for teaching, learning, and
sharing.
tilde.chat is a place for tilde-folk and friends to gather and communicate.
created 2019
servers:
- 'irc.tilde.chat:6697'
webserverlist:
webstatistic:
category:
- small
status: active
check:
server: 'irc.tilde.chat:6697'
irc-nerds:
image:
homepage: 'https://irc-nerds.com/wiki/index.php/Main_Page'
irchelp:
webchat: 'https://webchat.irc-nerds.net'
slocation:
services: nickserv, chanserv, hostserv
support_channels: '#help'
information: >
created 2020
servers:
- irc.irc-nerds.net
webserverlist:
webstatistic:
category:
- small
status: active
check:
server: irc.irc-nerds.net
Libera.Chat:
homepage: 'https://libera.chat/'
slocation: Europe, UK
services: 'nickserv, chanserv, alis, memoserv, tls, ipv6'
support_channels: '#libera'
information: >
Providing a community platform for free and open-source software and peer directed projects.
category:
- popular
status: active
servers:
- irc.libera.chat
- irc.libera.chat:6697
check:
server: irc.libera.chat
IRCnet:
image:
irchelp: '/networks/ircnet/'
homepage: 'https://www.ircnet.com/'
webchat: 'http://webchat.ircnet.net/'
slocation:
services: '/SQUERY ALIS'
support_channels: '#help'
information: >
IRCnet is one of the oldest and largest IRC networks with more than 25.000 users using it daily.
servers:
- open.ircnet.net
- ssl.ircnet.ovh
- ssl.cloak.ircnet.ovh
webserverlist: 'http://www.ircnet.info/servers'
webstatistic: 'https://netsplit.de/networks/statistics.php?net=IRCnet'
category:
- popular
status: active
check:
server: open.ircnet.net
OFTC:
image: '/media/icons/oftc-25.png'
homepage: 'https://www.oftc.net/'
webchat: 'https://webchat.oftc.net/'
slocation:
services: NickServ, ChanServ
support_channels: '#oftc'
information: >
The Open and Free Technology Community aims to provide stable and effective
collaboration services to members of the community in any part of the
world, while closely listening to their needs and desires.
OFTC was founded at the end of 2001 by a group of experienced members of
the Open Source and Free Software communities aiming to provide these
communities with better communication, development, and support
infrastructure.
OFTC is a member project of Software in the Public Interest, a non-profit
organization which was founded to help organizations develop and distribute
open hardware and software.
servers:
- irc.oftc.net
webserverlist:
webstatistic: 'https://netsplit.de/networks/statistics.php?net=OFTC'
category:
- popular
status: active
check:
server: irc.oftc.net
Undernet:
image: '/media/icons/undernet-25.png'
irchelp: '/networks/undernet/'
homepage: 'http://www.undernet.org/'
webchat: 'https://chat.undernet.org/'
slocation: Europe, US, Canada
services: '[Yes](http://www.undernet.org/services.php), The Undernet Channel Service Committee ([CSC](http://cservice.undernet.org/))'
support_channels: '#cservice'
information: >
Stable and highly organized network which pioneered features now
commonplace on other networks. Channel service requires certain conditions
before registering a channel. Policy and application form available from
their web site. Support for its services is extensive.
servers:
- irc.undernet.org
- chicago.il.us.undernet.org
- bucharest.ro.eu.undernet.org
- budapest.hu.eu.undernet.org
- dallas.tx.us.undernet.org
- losangeles.ca.us.undernet.org
- miami.fl.us.undernet.org
webserverlist: 'https://www.undernet.org/servers.php'
category:
- popular
status: active
check:
server: irc.undernet.org
EFNet:
image: '/media/icons/efnet-25.png'
irchelp: '/networks/efnet/'
homepage: 'http://www.efnet.org/'
webchat: 'http://chat.efnet.org:9090/'
slocation: 'US, EU'
services: chanfix
support_channels:
information: >
EFnet is the modern-day descendant of the original IRC network.
servers:
- irc.choopa.net
- efnet.deic.eu
webserverlist: 'http://www.efnet.org/?module=servers'
webstatistic: 'https://netsplit.de/networks/statistics.php?net=EFnet'
category:
- popular
status: active
check:
server: efnet.deic.eu
Rizon:
image:
homepage: 'https://rizon.net/'
webchat: 'https://rizon.net/chat'
slocation: 'US, EU, AS'
services:
support_channels: '#help'
information: >
Rizon is an IRC (internet relay chat) network that has been around for 18 years and counting.
It is an entirely free service that allows you to setup a channel to chat
with your friend about any old topic, or to coordinate with your group.
servers:
- irc.rizon.ca
- irc.rizon.no
- rizon.c.datapacket.com
webserverlist: 'https://wiki.rizon.net/index.php?title=Servers'
webstatistic: 'https://netsplit.de/networks/statistics.php?net=Rizon'
category:
- popular
status: active
check:
server: irc.rizon.no
GeekShed:
image: '/media/icons/geekshed-25.png'
homepage: 'http://www.geekshed.net/'
webchat:
slocation:
services: NickServ, ChanServ
support_channels:
information: >
GeekShed is a free to use and family-friendly Internet Relay Chat network,
capable of hosting chat rooms for a variety of purposes.
servers:
- irc.geekshed.net
webserverlist: 'http://www.geekshed.net/servers/'
webstatistic: 'https://netsplit.de/networks/statistics.php?net=GeekShed'
category:
- popular
status: active
check:
server: irc.geekshed.net
QuakeNet:
image: '/media/icons/quakenet-25.png'
irchelp: '/networks/quakenet/'
homepage: 'http://www.quakenet.org/'
webchat: 'https://webchat.quakenet.org/'
slocation: Europe, US
services: '[Yes](http://www.quakenet.org/request/), L (LightWeight Service), Q (The Other Service)'
support_channels: '#feds'
information: >
They call it the best multiplayer game ever. Maybe they're right, maybe
not. Anyway, here's a network full of (mainly European) addicts. It has
grown from a subject-specific network into the largest IRC network in the
world!
servers:
- adrift.sg.quakenet.org
- atw.hu.quakenet.org
- cymru.us.quakenet.org
- euroserv.fr.quakenet.org
- hostsailor.ro.quakenet.org
- stockholm.se.quakenet.org
- tngnet.nl.quakenet.org
- underworld2.no.quakenet.org
webserverlist: 'https://www.quakenet.org/servers'
webstatistic: 'https://www.quakenet.org/statistics#tab-users-day'
category:
- popular
- game
status: active
check:
server: hostsailor.ro.quakenet.org
DALnet:
image:
irchelp: '/networks/dalnet/'
homepage: 'https://www.dal.net/'
webchat: 'http://www.dal.net:9090/'
slocation:
services: nickserv, chanserv
support_channels: '#help'
information: >
Started in 1994 as an alternative to the overburdened networks of the time,
DALnet has grown into a vibrant community and is widely regarded as the
most "friendly" of the major IRC networks. DALnet pioneered nickname and
channel registration, giving users the right and ability to govern their
online experience, without the fear of channel takeover, impersonation or
harassment.
servers:
- irc.dal.net
- ix.dal.net
- pool.dal.net
- underworld.se.eu.dal.net
webserverlist: 'https://www.dal.net/servers/'
webstatistic: 'https://netsplit.de/networks/statistics.php?net=DALnet'
category:
- popular
status: active
check:
server: irc.dal.net
PTNet:
comment: 'porugal only'
homepage: 'http://www.ptnet.org/'
image: '/media/flags/pt-flag.png'
slocation: Portugal
services: Nick (NickServ), Channel (ChanServ), Memo (MemoServ), Help (HelpServ, ircIIhelp)
support_channels: #portugal
information: >
The largest local network for Portugal.
servers:
- irc.ptnet.org
category:
- regional
status: active
check:
server: irc.ptnet.org
#Freenode:
# homepage: 'https://freenode.net/'
# webchat: 'https://webchat.freenode.net/'
# slocation: China, Costa Rica, Europe
# services: Yes, ChanServ, NickServ
# support_channels: Many many support channels.
# information: >
# an interactive environment for coordination and support of peer-directed
# projects, including... free software and open source. Our aim is to help
# improve the communicative and collaborative skills of our participants and
# to maintain a friendly, efficient environment for project coordination and
# technical support.
# servers:
# - chat.freenode.net
# category:
# - popular
# - computer
# status: down
# check:
# server: chat.freenode.net
Freenode:
homepage: 'https://freenode.net/'
webchat: 'https://webchat.freenode.net/'
irchelp: '/networks/freenode/'
services: Yes, ChanServ, Nickserv
information: >
We love open innovation. We love creators.
servers:
- chat.freenode.net
category:
- computer
status: active
check:
server: chat.freenode.net
SciFi:
comment: "2020-08-15 server ?"
image:
homepage: "http://www.scifi.com/chat/"
webchat:
slocation:
services:
support_channels:
information: >
The SciFi TV channel caters to science fiction and fantasy, this chat server hosts chats with stars from the shows.
servers:
- server
webserverlist:
webstatistic:
category:
- scifi
status: down
EqNET:
comment:
- "2020-08-15 server ?"
- "https://web.archive.org/web/20170912041432/https://www.equestrianpages.com/category/chat/"
image:
homepage: "http://www.equestrianpages.com"
webchat:
slocation:
services:
support_channels:
information: >
All things equestrian (about horses, that is). Regular and special events. Main channel is #equestrian.
servers:
- server
webserverlist:
webstatistic:
category:
- misc
status: down
'I.I.G.S. IRC':
comment:
- "2020-08-15 server ?"
- "https://web.archive.org/web/20060819153931/http://www.iigs.org/irc/index.htm"
image:
homepage: "http://www.iigs.org/irc/index.htm"
webchat:
slocation:
services:
support_channels:
information: >
Genealogists worldwide unite!
servers:
- irc.iigs.org
webserverlist:
webstatistic:
category:
- misc
status: down
BDSMnet:
comment:
- "2020-08-15 irc?"
image:
homepage: "http://www.bondage.com/irc/servers.asp"
webchat:
slocation:
services:
support_channels:
information: >
Network for adults who are interested in discussions and play in all forms of sexuality. (No, it's not a porn trading post.)
Created August 1997
servers:
- server
webserverlist:
webstatistic:
category:
- misc
status: down
StonerNET:
comment:
- "2020-08-15 server ?"
- "https://web.archive.org/web/20180902150525/http://stonernet.org/"
image:
homepage: "http://stonernet.org/"
webchat:
slocation:
services:
support_channels: '#pot'
information: >
Our goal is to unite the stoners around the world in order to bring an end to the prohibition of cannabis.
Started November 1997
servers:
- irc.stonernet.org
category:
- small
status: down
ColdFront:
comment:
- "2020-08-15 hp down"
- "https://web.archive.org/web/20200305173103/http://www.coldfront.net/"
image:
homepage: "http://www.coldfront.net"
webchat:
slocation:
services:
support_channels:
information: >
Is a small network dedicated to fostering communities of online gamers.
servers:
- server
webserverlist:
webstatistic:
category:
- game
status: down
'Kidlink IRC':
comment:
- "2020-08-15 server ?"
- "http://www.kidlink.net/"
image:
homepage: "http://www.kidlink.org/IRC/"
webchat:
slocation:
services:
support_channels:
information: >
For kids up to age 15 and educators with 'classrooms' in various languages.
Requires registration prior to using, chat is monitored.
servers:
- server
webserverlist:
webstatistic:
category:
- kidedu
status: down
ScoutLink:
image:
homepage: "http://www.scoutlink.org/"
webchat: "https://webchat.scoutlink.net/"
slocation:
services:
support_channels:
information: >
Scouts in various parts of the world have set up an IRC network for
meetings in various languages. There is also a link from within this
network to scouting channels all over IRC.
servers:
- webchat-ircd.scoutlink.net
- clovehitch.scoutlink.net
- birch2.scoutlink.net
webserverlist:
webstatistic:
category:
- kidedu
status: active
check:
server: 'webchat-ircd.scoutlink.net:6697'
CyberEd:
comment:
- "2020-08-15 server ?"
image:
homepage: "http://www.cybered.net/"
webchat:
slocation:
services:
support_channels:
information: >
Dedicated to the use of IRC for educational purposes, hosting educational
events and discussions as well as classrooms on internet-related topics.
servers:
- server
webserverlist:
webstatistic:
category:
- kidedu
status: down
Kidsworld:
comment:
- "2020-08-15 server ?"
image:
homepage: "http://www.kidsworld.org/"
webchat:
slocation:
services:
support_channels:
information: >
Friendly network dedicated to providing a secure environment for kids without being too restrictive.
servers:
- server
webserverlist:
webstatistic:
category:
- kidedu
status: down
AUSTnet:
image:
homepage: "http://www.austnet.org/"
webchat: "https://webchat.austnet.org/chat.php"
slocation: Australia, Canada, Singapore, UK, USA
services: Channel (ChanOP), Nick (NickOP), Note (NoteOP), Help (HelpOP)
support_channels:
information: >
Servers mainly around the pacific. Unlike most large networks, this is one
of the few that isn't US-based, but predominantly australasian. North
American all-nighters might find some signs of friendly life here.
Started at early 1996
servers:
- incognito.or.us.austnet.org
- onacloud.vic.au.austnet.org
- ego.jp.austnet.org
- vegas.qld.au.austnet.org
webserverlist:
webstatistic:
category:
- general
status: active
check:
server: vegas.qld.au.austnet.org
ChatNet:
comment:
- "2020-08-15 server ?"
- "https://web.archive.org/web/20180209052717/http://www.chatnet.org/servers.html"
- "*.gr maybe a split of chatnet"
image:
homepage: "http://www.chatnet.org/"
webchat:
slocation: Canada, Norway, Portugal, South Africa, Turkey, UK, USA
services: Channel (K9)
support_channels: #nuthouse
information: >
Started at March 1996
servers:
- irc.chatnet.gr
webserverlist: "http://www.chatnet.org/Servers.html"
webstatistic:
category:
- general
status: down
check:
server: irc.chatnet.gr
NewNet:
comment:
image:
homepage: "http://www.newnet.net/"
webchat: "https://web.newnet.net/"
slocation: Canada, USA
services: Channel (ChanServ), Nick (NickServ)
support_channels: #helpdesk
information: >
Originally formed by the irc.eskimo.com server after being forced off
EFnet, this network soon became a prime example of how a small network
grows to a respectable size and maintains stability for a number of years.
Started at April 1996
servers:
- club.newnet.net
- tildeclub.newnet.net
- uswest.newnet.net
webserverlist: "https://newnet.net/servers/"
webstatistic: "https://newnet.net/stats/"
category:
- general
status: active
check:
server: irc.newnet.net
RelicNet:
image:
homepage: "http://www.relic.net/"
webchat:
slocation: Australia, Belgium, Canada, UK, USA
services: Channel (ChanS), Nick (NickS), Memo (MemoS), others.
support_channels: '#relicnet'
information: >
Started at October 1997
servers:
- irc.relic.net
webserverlist:
webstatistic:
category:
- general
status: active
check:
server: irc.relic.net
WebNet:
comment:
- "default port 7000"
- "2020-08-15 server ?"
- "https://web.archive.org/web/20070316061538/http://www.webchat.org/"
image:
homepage: "http://www.webchat.org/"
webchat:
slocation: Canada, Hong Kong, Thailand, USA
services: Channel (ChanServ), Nick (NickServ), Memo (MemoServ)
support_channels: #spiderslair
information: >
A network formerly run entirely on Windows servers, which was a great
novelty back then, this network has developed into a very decent
alternative to the major ones. Showcase for the (commercial) Conference
Room ircd.
servers:
- irc.webchat.org
webserverlist: "http://www.webchat.org/servers.html"
webstatistic:
category:
- general
status: down
SurNet:
comment:
- "2020-08-16 server ?"
- "https://web.archive.org/web/20070429184305/http://www.sur.net/"
image: /media/flags/ar-flag.png
homepage: "http://www.sur.net/"
webchat:
slocation: Argentina
services: Channel (X), Nick (Nickserv)
support_channels:
information:
servers:
- server
webserverlist:
webstatistic:
category:
- regional
status: down
'Oz.Org':
image: /media/flags/au-flag.png
homepage: "http://www.oz.org/"
webchat:
slocation: Australia
services: Channel (Z)
support_channels:
information: >
The first really large local network. It's made up of servers that used to be the Australian part of the Undernet.
servers:
- irc.ozorg.net
webserverlist:
webstatistic:
category:
- regional
status: active
check:
server: irc.ozorg.net
BrasNET:
comment:
- "2020-08-16 server ?"
image: /media/flags/br-flag.png
homepage: "http://www.brasnet.org/"
webchat:
slocation: Brazil
services: Nick (NickServ), Channel (ChanServ), Memo (MemoServ), Help (Helpserv, ircIIhelp)
support_channels: #brasil
information: >
Currently the largest local Brazilian network, this network has emerged the clear favourite among Brazilian users,
servers:
- irc.brasnet.org
webserverlist:
webstatistic:
category:
- regional
status: down
BrasIRC:
image: /media/flags/br-flag.png
homepage: "http://www.BrasIRC.com.br"
webchat: "http://chat.BrasIRC.com.br"
slocation: Brazil
services: Nick (NickServ), Channel (ChanServ), Memo (MemoServ), Help (HelpServ)
support_channels: #brasil
information: >
Another large Brazilian network. Note that this is not the only network
calling itself BrasIRC, but is by far the largest of them.
servers:
- irc2.brasirc.com.br
webserverlist:
webstatistic:
category:
- regional
status: active
check:
server: irc2.brasirc.com.br
RedeBrasil:
comment:
- "2020-08-16 server ?"
image: /media/flags/br-flag.png
homepage: "http://www.redebrasilirc.org/"
webchat:
slocation: Brazil
services: Nick (NickServ), Channel (ChanServ)
support_channels: #brasil
information: >
A smaller Brazilian network with the name of RedeBrasil.
servers:
- server
webserverlist:
webstatistic:
category:
- regional
status: down
UniBG:
image: /media/flags/bg-flag.png
homepage: "http://www.unibg.org/"
webchat:
slocation: Bulgaria
services: Nick (NS), Channel (CS), Memo (MS), Stats (SS), Help (HS)
support_channels: #bulgaria
information: >
Started 1996, now a major network.
servers:
- irc.unibg.org
- irc.rosal.bg
webserverlist:
webstatistic:
category:
- regional
status: active
check:
server: irc.unibg.org
BlafaselNet:
image: /media/flags/de-flag.png
homepage: "http://www.blafasel.de/"
webchat:
slocation: Germany
services:
support_channels: #blafasel
information: >
A small network evolved from a single channel named #blafasel. Of course
you have to be German to understand the humour behind it. Populated mainly by
IRC veterans.
servers:
- irc.blafasel.de
- space.blafasel.de
webserverlist:
webstatistic:
category:
- regional
status: active
check:
server: irc.blafasel.de
GRnet:
image: /media/flags/gr-flag.png
homepage: "http://www.irc.gr/"
webchat:
slocation: Canada, Greece, UK
services: Nick (NickServ), Channel (ChanServ), Memo (MemoServ), Help (HelpServ)
support_channels: #hellas, #gr-orpers
information: >
Started 1996. Some foreign servers serving expatriates too.
servers:
- rea.irc.gr
- blue.ircn.gr
- eos.ircn.gr
webserverlist: "https://grnet.wordpress.com/about/grnet-servers/"
webstatistic:
category:
- regional
status: active
check:
server: blue.ircn.gr
Indonet:
comment: "2020-08-16 server ?"
image: /media/flags/id-flag.png
homepage: "http://irc.indo.net.id/"
webchat:
slocation: Indonesia
services: Nick (NickServ), Channel (ChanServ), Memo (MemoServ)
support_channels:
information: >
Poorly maintained but fairly popular.
servers:
- irc.indo.net.id
webserverlist:
webstatistic:
category:
- regional
status: down
IRCity:
comment:
- "2020-08-16 server ?"
image: /media/flags/it-flag.png
homepage: "http://www.ircity.org/"
webchat:
slocation: Italy
services:
support_channels: #italia
information: >
IRCity, fornerly known as FASTnet, is the first lasting attempt to form an
all-Italian network. Started 1997.
servers:
- irc.ircity.org
- hub.ru.irccity.net
webserverlist:
webstatistic:
category:
- regional
status: down
'Red Latina':
comment:
- "2020-08-16 server ?"
image: /media/flags/mx-flag.png
homepage: "http://www.red-latina.org/"
webchat:
slocation: Mexico, USA
services: Channel (X), Nick (Ns), Memo (Ms)
support_channels:
information: >
After several years of looking for its identity, Red Latina appears to finally have stabilised.
Started 1997.
servers:
- server
webserverlist:
webstatistic:
category:
- regional
status: down
cybernet:
comment:
- "2020-08-16 no dns"
image: /media/flags/pk-flag.png
homepage:
webchat:
slocation:
services:
support_channels:
information: >
A very small single server from Cyber Internet Services
servers:
- irc.cyber.net.pk
webserverlist:
webstatistic:
category:
- regional
status: down
colcom:
comment:
- "2020-08-16 no dns"
image: /media/flags/pk-flag.png
homepage:
webchat:
slocation:
services:
support_channels:
information: >
A very small single server run by CompuNet Online.
servers:
- irc.col.com.pk
webserverlist:
webstatistic:
category:
- regional
status: down
skyinet:
image: /media/flags/ph-flag.png
homepage:
webchat:
slocation: Philippines
services:
support_channels:
information: >
A very small single server run by a large local ISP, Sky Internet
servers:
- irc.skyinet.net
webserverlist:
webstatistic:
category:
- regional
status: down
PTlink:
comment:
- "2020-08-16 server ?"
image: /media/flags/pt-flag.png
homepage: "http://www.ptlink.net/"
webchat:
slocation: Portugal
services: Nick (NickServ), Channel (ChanServ), Memo (MemoServ), Help (HelpServ, ircIIhelp)
support_channels: #portugal
information: >
Small network, better known for the public release of its server and Services code.
servers:
- server
webserverlist:
webstatistic:
category:
- regional
status: down
RusNet:
image: /media/flags/ru-flag.png
homepage: "http://www.rus-net.org/"
webchat:
slocation: Russia, Italy, Ukraine
services:
support_channels:
information: >
RusNet serves the Russian-speaking community.
servers:
- irc.anarxi.st
- irc.tomsk.net
- irc.meganet.ru
- irc.intertax.ru
- irc.lucky.net
- irc.tambov.ru
- irc.tom.ru
- irc.run.net
- irc.rusnet.org.ru
webserverlist:
webstatistic:
category:
- regional
status: active
check:
server: irc.anarxi.st
ZAIRC:
image: /media/flags/za-flag.png
homepage: "https://zairc.net/"
webchat:
slocation: South Africa, UK
services: Nick (NickServ), Memo (MemoServ)
support_channels: #zairc
information: >
Originally known as Differnet, ZAnet is probably the oldest existing local
network. A split in October 2000 resulted in the formation of ZAnet.net
to ZAnet.org
Started at late 1993
servers:
- irc.zairc.net
webserverlist:
webstatistic:
category:
- regional
status: down
Morphie:
homepage: "https://www.morphie.com/"
webchat: "https://chat.morphie.net:9000/#/connect"
slocation:
support_channels: #Help
services: vHost /HostServ, /BotServ
information: >
Morphie is where old-school chatroom energy meets today’s internet magic.
We’ve taken the best parts of classic IRC—the quirky usernames,
the fast-paced conversations, the thrill of dropping into a room full of strangers—and
refreshed it with modern design, solid servers, and a community built for fun.
Started at 2025
servers:
- irc.zairc.net
- rising.morphie.net
- ashburn.morphie.net
webserverlist:
webstatistic:
category:
- small
status: active
check:
server: irc.zairc.net
'ZAnet.net':
comment:
- "2020-08-16 server ?"