Systems Network Architecture

Systems Network Architecture[1] (SNA) is IBM's proprietary networking architecture, created in 1974.[2] It is a complete protocol stack for interconnecting computers and their resources. SNA describes formats and protocols but, in itself, is not a piece of software. The implementation of SNA takes the form of various communications packages, most notably Virtual Telecommunications Access Method (VTAM), the mainframe software package for SNA communications.

History

IBM 3745-170

SNA was made public as part of IBM's "Advanced Function for Communications" announcement in September, 1974,[3] which included the implementation of the SNA/SDLC (Synchronous Data Link Control) protocols on new communications products:

They were supported by IBM 3704/3705 communication controllers and their Network Control Program (NCP), and by System/370 and their VTAM and other software such as CICS and IMS. This announcement was followed by another announcement in July, 1975, which introduced the IBM 3760 data entry station, the IBM 3790 communication system, and the new models of the IBM 3270 display system.[4]

SNA was designed in the era when the computer industry had not fully adopted the concept of layered communication. Applications, databases, and communication functions were mingled into the same protocol or product, which made it difficult to maintain and manage.[5][6] SNA was mainly designed by the IBM Systems Development Division laboratory in Research Triangle Park, North Carolina, USA,[7] helped by other laboratories that implemented SNA/SDLC. IBM later made the details public in its System Reference Library manuals and IBM Systems Journal.

It is still used extensively in banks and other financial transaction networks, as well as in many government agencies. In 1999 there were an estimated 3,500 companies "with 11,000 SNA mainframes."[8] One of the primary pieces of hardware, the 3745/3746 communications controller, has been withdrawn[a] from the market by IBM. IBM continues to provide hardware maintenance service and microcode features to support users. A robust market of smaller companies continues to provide the 3745/3746, features, parts, and service. VTAM is also supported by IBM, as is the NCP required by the 3745/3746 controllers.

In 2008 an IBM publication said:

with the popularity and growth of TCP/IP, SNA is changing from being a true network architecture to being what could be termed an "application and application access architecture." In other words, there are many applications that still need to communicate in SNA, but the required SNA protocols are carried over the network by IP.[9]

Objectives of SNA

IBM in the mid-1970s saw itself mainly as a hardware vendor and hence all its innovations in that period aimed to increase hardware sales. SNA's objective was to reduce the costs of operating large numbers of terminals and thus induce customers to develop or expand interactive terminal-based systems as opposed to batch systems. An expansion of interactive terminal-based systems would increase sales of terminals and more importantly of mainframe computers and peripherals - partly because of the simple increase in the volume of work done by the systems and partly because interactive processing requires more computing power per transaction than batch processing.

Hence SNA aimed to reduce the main non-computer costs and other difficulties in operating large networks using earlier communications protocols. The difficulties included:

  • Often a communications line could not be shared by terminals of different types, as they used different "dialects" of the existing communications protocols. Up to the early 1970s, computer components were so expensive and bulky that it was not feasible to include all-purpose communications interface cards in terminals. Every type of terminal had a hard-wired communications card which supported only the operation of one type of terminal without compatibility with other types of terminals on the same line.
  • The protocols which the primitive communications cards could handle were not efficient. Each communications line used more time transmitting data than modern lines do.
  • Telecommunications lines at the time were of much lower quality. For example, it was almost impossible to run a dial-up line at more than 19,200 bits per second because of the overwhelming error rate, as compared with 56,000 bits per second today on dial-up lines; and in the early 1970s few leased lines were run at more than 2400 bits per second (these low speeds are a consequence of Shannon's Law in a relatively low-technology environment).

As a result, running a large number of terminals required a lot more communications lines than the number required today, especially if different types of terminals needed to be supported, or the users wanted to use different types of applications (.e.g. under CICS or TSO) from the same location. In purely financial terms SNA's objectives were to increase customers' spending on terminal-based systems and at the same time to increase IBM's share of that spending, mainly at the expense of the telecommunications companies.

SNA also aimed to overcome a limitation of the architecture which IBM's System/370 mainframes inherited from System/360. Each CPU could connect to at most 16 I/O channels[10] and each channel could handle up to 256 peripherals - i.e. there was a maximum of 4096 peripherals per CPU. At the time when SNA was designed, each communications line counted as a peripheral. Thus the number of terminals with which powerful mainframes could otherwise communicate was limited.

Principal components and technologies

Improvements in computer component technology made it feasible to build terminals that included more powerful communications cards which could operate a single standard communications protocol rather than a very stripped-down protocol which suited only a specific type of terminal. As a result, several multi-layer communications protocols were proposed in the 1970s, of which IBM's SNA and ITU-T's X.25 became dominant later.

The most important elements of SNA include:

  • IBM Network Control Program (NCP)[11][12] is a communications program running on the 3705 and subsequent 37xx communications processors that, among other things, implements the packet switching protocol defined by SNA. The protocol performed two main functions:
    • It is a packet forwarding protocol, acting like modern switch - forwarding data packages to the next node, which might be a mainframe, a terminal or another 3705. The communications processors supported only hierarchical networks with a mainframe at the center, unlike modern routers which support peer-to-peer networks in which a machine at the end of the line can be both a client and a server at the same time.
    • It is a multiplexer that connected multiple terminals into one communication line to the CPU, thus relieved the constraints on the maximum number of communication lines per CPU. A 3705 could support a larger number of lines (352 initially) but only counted as one peripheral by the CPUs and channels. Since the launch of SNA IBM has introduced improved communications processors, of which the latest is the 3745.
  • Synchronous Data Link Control[13] (SDLC), a protocol which greatly improved the efficiency of data transfer over a single link:[14]
    • It is a sliding window protocol, which enables terminals and 3705 communications processors to send frames of data one after the other without waiting for an acknowledgement of the previous frame – the communications cards had sufficient memory and processing capacity to remember the last 7 frames sent or received, request re-transmission of only those frames which contained errors, and slot the re-transmitted frames into the right place in the sequence before forwarding them to the next stage.
    • These frames all had the same type of envelope (frame header and trailer)[15] which contained enough information for data packages from different types of terminal to be sent along the same communications line, leaving the mainframe to deal with any differences in the formatting of the content or in the rules governing dialogs with different types of terminal.
Remote terminals (e.g., those connected to the mainframe by telephone lines) and 3705 communications processors would have SDLC-capable communications cards.
This is the precursor of the packet communication that eventually evolved into today's TCP/IP technology[citation needed]. SDLC itself evolved into HDLC,[16] one of the base technologies for dedicated telecommunication circuits.
  • VTAM,[17][18] a software package to provide log-in, session keeping, and routing services within the mainframe. A terminal user would log-in via VTAM to a specific application or application environment (e.g. CICS, IMS, DB2, or TSO/ISPF). A VTAM device would then route data from that terminal to the appropriate application or application environment until the user logged out and possibly logged into another application. The original versions of IBM hardware could only keep one session per terminal. In the 1980s further software (mainly from third-party vendors) made it possible for a terminal to have simultaneous sessions with different applications or application environments.

Advantages and disadvantages

SNA removed link control from the application program and placed it in the NCP. This had the following advantages and disadvantages:

Advantages

  • Localization of problems in the telecommunications network was easier because a relatively small amount of software actually dealt with communication links. There was a single error reporting system.
  • Adding communication capability to an application program was much easier because the formidable area of link control software that typically requires interrupt processors and software timers was relegated to system software and NCP.
  • With the advent of Advanced Peer-to-Peer Networking (APPN), routing functionality was the responsibility of the computer as opposed to the router (as with TCP/IP networks). Each computer maintained a list of Nodes that defined the forwarding mechanisms. A centralized node type known as a Network Node maintained Global tables of all other node types. APPN stopped the need to maintain Advanced Program-to-Program Communication (APPC) routing tables that explicitly defined endpoint to endpoint connectivity. APPN sessions would route to endpoints through other allowed node types until it found the destination. This is similar to the way that routers for the Internet Protocol and the Netware Internetwork Packet Exchange protocol function. (APPN is also sometimes referred to PU2.1 or Physical Unit 2.1. APPC, also sometime referred to LU6.2 or Logical Unit 6.2, was the only protocol defined to APPN networks, but was originally one of many protocols supported by VTAM/NCP, along with LU0, LU1, LU2 (3270 Terminal), and LU3. APPC was primarily used between CICS environments, as well as database services, because it contact protocols for 2-phase commit processing). Physical Units were PU5 (VTAM), PU4 (37xx), PU2 (Cluster Controller). A PU5 was the most capable and considered the primary on all communication. Other PU devices requested a connection from the PU5 and the PU5 could establish the connection or not. The other PU types could only be secondary to the PU5. A PU2.1 added the ability to a PU2.1 to connect to another PU2.1 in a peer-to-peer environment.[19])

Disadvantages

  • Connection to non-SNA networks was difficult. An application that needed access to some communication scheme not supported in the current version of SNA would have faced obstacles. Before IBM included X.25 support (NPSI) in SNA, connecting to an X.25 network would have been awkward. Conversion between X.25 and SNA protocols could have been provided either by NCP software modifications or by an external protocol converter.
  • A sheaf of alternate pathways between every pair of nodes in a network had to be predesigned and stored centrally. Choice among these pathways by SNA was rigid and did not take advantage of current link loads for optimum speed.
  • SNA network installation and maintenance are complicated and SNA network products are (or were) expensive. Attempts to reduce SNA network complexity by adding IBM Advanced Peer-to-Peer Networking functionality were not really successful, if only because the migration from traditional SNA to SNA/APPN was very complex, without providing much additional value, at least initially. SNA software licences (VTAM) cost as much as $10,000 a month for high-end systems. And SNA IBM 3745 Communications Controllers typically cost over $100K. TCP/IP was still seen as unfit for commercial applications e.g. in the finance industry until the late 1980s, but rapidly took over in the 1990s due to its peer-to-peer networking and packet communication technology.
  • SNA's connection based architecture invoked huge state machine logic to keep track of everything. APPN added a new dimension to state logic with its concept of differing node types. While it was solid when everything was running correctly, there was still a need for manual intervention. Simple things like watching the Control Point sessions had to be done manually. APPN wasn't without issues; in the early days many shops abandoned it due to issues found in APPN support. Over time, however, many of the issues were worked out but not before TCP/IP became increasingly popular in the early 1990s, which marked the beginning of the end for SNA.

Security

SNA at its core was designed with the ability to wrap different layers of connections with a blanket of security. To communicate within an SNA environment you would first have to connect to a node and establish and maintain a link connection into the network. You then have to negotiate a proper session and then handle the flows within the session itself. At each level there are different security controls that can govern the connections and protect the session information.[20]

Network Addressable Units

Network Addressable Units in a SNA network are any components that can be assigned an address and can send and receive information. They are distinguished further as follows:[21]

  • a System Services Control Point (SSCP) provides resource management and other session services (such as directory services) for users in a subarea network;[22]
  • a Physical Unit is a combination of hardware and software components that control the links to other nodes.[23]
  • a Logical Unit acts as the intermediary between the user and the network.[24]

Logical Unit (LU)

SNA essentially offers transparent communication: equipment specifics that do not impose any constraints onto LU-LU communication. But eventually it serves a purpose to make a distinction between LU types, as the application must take the functionality of the terminal equipment into account (e.g. screen sizes and layout).

Within SNA there are three types of data stream to connect local display terminals and printers; there is SNA Character String (SCS), used for LU1 terminals and for logging on to an SNA network with Unformatted System Services (USS), there is the 3270 data stream mainly used by mainframes such as the System/370 and successors, including the zSeries family, and the 5250 data stream mainly used by minicomputers/servers such as the System/34, System/36, System/38, and AS/400 and its successors, including System i and IBM Power Systems running IBM i.

SNA defines several kinds of devices, called Logical Unit types:[25]

  • LU0 provides for undefined devices, or build your own protocol. This is also used for non-SNA 3270 devices supported by TCAM or VTAM.
  • LU1 devices are printers or combinations of keyboards and printers.
  • LU2 devices are IBM 3270 display terminals.
  • LU3 devices are printers using 3270 protocols.
  • LU4 devices are batch terminals.
  • LU5 has never been defined.
  • LU6 provides for protocols between two applications.
  • LU7 provides for sessions with IBM 5250 terminals.

The primary ones in use are LU1, LU2, and LU6.2 (an advanced protocol for application to application conversations).

Physical Unit (PU)

The term 37xx refers to IBM's family of SNA communications controllers. The 3745 supports up to eight high-speed T1 circuits, the 3725 is a large-scale node and front-end processor for a host, and the 3720 is a remote node that functions as a concentrator and router.

SNA over Token-Ring

VTAM/NCP PU4 nodes attached to IBM Token Ring networks can share the same Local Area Network infrastructure with workstations and servers. NCP encapsulates SNA packets into Token-Ring frames, allowing sessions to flow over a Token-Ring network. The actual encapsulation and decapsulation takes place in the 3745.

SNA over IP

As mainframe-based entities looked for alternatives to their 37XX-based networks, IBM partnered with Cisco in the mid-1990s and together they developed Data Link Switching, or DLSw. DLSw encapsulates SNA packets into IP datagrams, allowing sessions to flow over an IP network. The actual encapsulation and decapsulation takes place in Cisco routers at each end of a DLSw peer connection. At the local, or mainframe site, the router uses Token Ring topology to connect natively to VTAM. At the remote (user) end of the connection, a PU type 2 emulator (such as an SNA gateway server) connects to the peer router via the router's LAN interface. End user terminals are typically PCs with 3270 emulation software that is defined to the SNA gateway. The VTAM/NCP PU type 2 definition becomes a Switched Major Node that can be local to VTAM (without an NCP), and a "Line" connection can be defined using various possible solutions (such as a Token Ring interface on the 3745, a 3172 Lan Channel Station, or a Cisco ESCON-compatible Channel Interface Processor).

Competitors

The proprietary networking architecture for Honeywell Bull mainframes is Distributed Systems Architecture (DSA).[27] The Communications package for DSA is VIP. DSA is also no longer supported for client access. Bull mainframes are fitted with Mainway for translating DSA to TCP/IP and VIP devices are replaced by TNVIP Terminal Emulations (GLink, Winsurf). GCOS 8 supports TNVIP SE over TCP/IP.

The networking architecture for Univac mainframes was the Distributed Computing Architecture (DCA), and the networking architecture for Burroughs mainframes was the Burroughs Network Architecture (BNA); after they merged to form Unisys, both were provided by the merged company. Both were largely obsolete by 2012. International Computers Limited (ICL) provided its Information Processing Architecture (IPA).

DECnet[28][29][30] is a suite of network protocols created by Digital Equipment Corporation, originally released in 1975 to connect two PDP-11 minicomputers. It evolved into one of the first peer-to-peer network architectures, thus transforming DEC into a networking powerhouse in the 1980s.

SNA also competed with ISO's Open Systems Interconnection, which was an attempt to create a vendor-neutral network architecture that failed due to the problems of "design by committee".[citation needed] OSI systems are very complex, and the many parties involved required extensive flexibilities that hurt the interoperability of OSI systems, which was the prime objective to start with.[citation needed]

The TCP/IP suite for many years was not considered a serious alternative by IBM, due in part to the lack of control over the intellectual property.[citation needed] The 1988 publication of RFC 1041, authored by Yakov Rekhter, which defines an option to run IBM 3270 sessions over Telnet, explicitly recognizes the customer demand for interoperability in the data center. Subsequently, the IETF expanded on this work with multiple other RFCs. TN3270 (Telnet 3270), defined by those RFCs, supports direct client-server connections to the mainframe using a TN3270 server on the mainframe, and a TN3270 emulation package on the computer at the end user site. This protocol allows existing VTAM applications (CICS, TSO) to run with little or no change from traditional SNA by supporting traditional 3270 terminal protocol over the TCP/IP session. This protocol is widely used to replace legacy SNA connectivity more than Data-Link Switching (DLSw) and other SNA replacement technologies. A similar TN5250 (Telnet 5250) variant exists for the IBM 5250.

Non-IBM SNA implementations

Non-IBM SNA software allowed systems other than IBM's to communicate with IBM's mainframes and AS/400 midrange computers using the SNA protocols.

Some Unix system vendors, such as Sun Microsystems with its SunLink SNA product line, including PU2.1 Server,[31] and Hewlett-Packard/Hewlett Packard Enterprise, with their SNAplus2 product,[32] provided SNA software.

Microsoft introduced SNA Server for Windows in 1993;[33] it is now named Microsoft Host Integration Server.

Digital Equipment Corporation had VMS/SNA for VMS.[34] Third-party SNA software packages for VMS, such as the VAX Link products from Systems Strategies, Inc.,[34] were also available.

Hewlett-Packard offered SNA Server and SNA Access for its HP 3000 systems.[35]

Brixton Systems developed several SNA software packages, sold under the name "Brixton",[36][37][38] such as Brixton BrxPU21, BrxPU5, BrxLU62, and BrxAPPC, for systems such as workstations from Hewlett-Packard,[39] and Sun Microsystems.[40]

IBM supported using several non-IBM software implementations of APPC/PU2.1/LU6.2 to communicate with z/OS, including SNAplus2 for systems from HP,[41] Brixton 4.1 SNA for Sun Solaris,[42] and SunLink SNA 9.1 Support for Sun Solaris.[43]

See also

Explanatory notes

  1. ^ However, the 3745 simulator Communications Controller for Linux (CCL) is still available.

Notes

  1. ^ Peter H. Lewis (May 14, 1989). "A Link for All Operating Systems". The New York Times. Retrieved September 15, 2022.
  2. ^ (Schatt 1991, p. 227).
  3. ^ IBM Corporation. "IBM Highlights, 1970-1984" (PDF). IBM. Retrieved April 19, 2019.
  4. ^ IBM 3770 Family Batch Communications Terminal (PDF) (Report). Datapro. and the 3790/3760 data entry/data communications ...
  5. ^ "Bridge your legacy systems to the Web". Datamation.
  6. ^ "Fujitsu Net Architecture". Computerworld. November 15, 1976. p. 99.
  7. ^ RJ Sundstrom (1987), "SNA: Recent advances and additional requirements", Networking in Open Systems, Lecture Notes in Computer Science, vol. 248, Springer Publishing, pp. 107–116, doi:10.1007/BFb0026957, ISBN 3-540-17707-8
  8. ^ "AT&T Outlines VPN Migration Plan". Informationweek. May 12, 1999. Retrieved September 16, 2022.
  9. ^ Networking on z/OS (PDF). IBM Corporation. 2010. p. 31.
    "Networking on z/OS (web document)". IBM Corporation.
  10. ^ devices that acted as DMA controllers for control units, which in turn attached peripherals such as tape and disk drives, printers, card-readers
  11. ^ "SNA Functional Layers". Microsoft Docs. Microsoft. September 11, 2008. Retrieved September 16, 2022.
  12. ^ W. S. Hobgood (1976). "The role of the Network Control Program in Systems Network Architecture" (PDF). IBM Systems Journal. 15 (1): 39–52. doi:10.1147/sj.151.0039. Archived from the original (PDF) on March 16, 2007. Retrieved August 26, 2006.
  13. ^ Synchronous Data Link Control Concepts (PDF) (Fifth ed.). IBM. May 1992. GA27-3093-4.
  14. ^ (Pooch, Greene & Moss 1983, p. 310).
  15. ^ (Pooch, Greene & Moss 1983, p. 313).
  16. ^ (Friend et al. 1988, p. 191).
  17. ^ Frank, Ronald A (October 17, 1973). "IBM Delays Second Virtual TP Release; SD:C Impact Expected". Computerworld. Retrieved June 30, 2020.
  18. ^ Introduction to VTAM (PDF). IBM. April 1976. GC27-6987-5.
  19. ^ IBM Systems Network Architecture and APPN PU2.1 References Guides
  20. ^ Buecker, Axel; et al. (2015). Reduce Risk and Improve Security on IBM Mainframes: Volume 2 Mainframe Communication and Networking Security. IBM Corporation. p. 132. ISBN 978-0738440941. Retrieved April 23, 2019.
  21. ^ Basic SNA terms and concepts
  22. ^ "z/OS Communications Server: SNA Network Implementation Guide (6)". IBM Knowledge Center. IBM Corporation. Retrieved October 3, 2015.
  23. ^ "z/OS Communications Server: SNA Network Implementation Guide (11)". IBM Knowledge Center. IBM Corporation. September 11, 2014. Retrieved October 3, 2015.
  24. ^ "z/OS Communications Server: SNA Network Implementation Guide (12)". IBM Knowledge Center. IBM Corporation. September 11, 2014. Retrieved October 3, 2015.
  25. ^ (Schatt 1991, p. 229).
  26. ^ Microsoft. "Physical Unit (PU)". Retrieved September 7, 2012.
  27. ^ "Distributed Systems Architecture".
  28. ^ James M. Moran; Brian J. Edwards (February 1984). "Giving DECnet a LAN". Hardcopy. pp. 62–65.
  29. ^ "DECnet for Linux". SourceForge. Archived from the original on October 4, 2009. Retrieved June 26, 2018.
  30. ^ "Networking Products Introduced by Digital". The New York Times. August 24, 1988.
  31. ^ SunLink SNA 9.1 PU2.1 Server Configuration Guide (PDF). Sun Microsystems. 1997.
  32. ^ "HP-UX SNAplus2 Software - Overview". HPE support.
  33. ^ Willett, Shawn; Wilson, Jayne (November 22, 1993). "Microsoft, Novell, IBM target host-to-LAN links". InfoWorld. Vol. 15, no. 47. p. 39.
  34. ^ a b Gonze, Josh (April 25, 1988). "Finding a DEC-to-IBM connection". Network World. p. 28. VMS/SNA, software that runs under VMS in conjunction with a synchronous board, in a VAX configured with a BIbus, makes a single VAX appear as a PU 2 node.
  35. ^ "Software offerings accompany Spectrum announcement". Computerworld. Vol. 20, no. 9. March 3, 1986. p. 10. HP also unveiled IBM connection capabilities with Systems Network Architecture (SNA) Server and Server Access software.
  36. ^ Brixton SNA Server - Red Hat Certified Software
  37. ^ "CNT/Brixton Systems". Network World. July 31, 1995.
  38. ^ Brixton PU2.1 SNA Server, retrieved September 14, 2022
  39. ^ Cooney, Michael (November 29, 1993). "Brixton turns HP workstations into mainframe alternatives". Network World. Vol. 10, no. 48. p. 15.
  40. ^ Orrange, Kate (March 9, 1992). "Brixton expands IBM/Sun linkup". InfoWorld. Vol. 14, no. 10. p. 41.
  41. ^ "HP SNAplus2 Configuration Requirements". IBM.
  42. ^ "Brixton 4.1 SNA for Sun Solaris Requirements". IBM.
  43. ^ "Configuring SunLink SNA 9.1 Support for Sun Solaris". IBM.

References

Read other articles:

FereydunFreydun, ke-19Tokoh ShahnamehNamaFereydunGelarRajaAyahAbtinIbuFaranakAnak laki-lakiSalm, Tur, IrajCucuManuchehrMenteriSarv King of YemenOther InformationKematianAbedDikenal karenaKemerdekaan Iran dari Zahhak.Kesamaan historisEra Kassites Fereydun (Persia: فریدونcode: fa is deprecated ; Middle Persian: 𐭯𐭫𐭩𐭲𐭥𐭭, Frēdōn; Avestan: 𐬚𐬭𐬀𐬉𐬙𐬀𐬊𐬥𐬀, Θraētaona), atau Afrīdūn, adalah seorang raja Persia dan pahlawan dari Dinasti Pishdadian. Ia...

 

Victor VernicosBiographieNaissance 23 octobre 2006 (17 ans)Athènes (Grèce)Nom dans la langue maternelle Βίκτωρ ΒερνίκοςNoms de naissance Victor Vernicos Jørgensen, Βίκτορ Βερνίκος ΓιούργκενσενNationalité grecqueActivités Chanteur, auteur-compositeurmodifier - modifier le code - modifier Wikidata Victor Vernicos Jørgensen (en grec moderne : Βίκτορ Βερνίκος Γιούργκενσεν ; né le 23 octobre 2006) est un auteur...

 

Halaman ini berisi artikel tentang klub yang terbentuk pada 1909. Untuk klub bernama serupa yang dibentuk pada tahun 1893, lihat Dundee F.C. Dundee UnitedNama lengkapDundee United Football ClubJulukanThe TerrorsBerdiri24 Mei 1909; 114 tahun lalu (1909-05-24)(sebagai Dundee Hibernian)StadionTannadice Park, Dundee(Kapasitas: 14.223[1])KetuaMark OgrenManajerMicky MellonLigaScottish Premiership2019–20Scottish Championship, peringkat 1 dari 10 tim (promosi)Situs webSitus web re...

25th-century BCE Sumerian ruler Mug-si𒈮𒋛Ruler of AdabReign25th century BCEPredecessorLugalannemunduSuccessorE-iginimpa'eDynastyDynasty of AdabReligionSumerian religion Adabclass=notpageimage| Mug-si was ruler of Adab, circa 2500 BCE. Mug-si (Sumerian: 𒈮𒋛, mug-si) was a Sumerian ruler (ensi) of the Mesopotamian city of Adab in the mid-3rd millennium BCE, probably circa 2400 BCE.[1][2] He was the predecessor of E-iginimpa'e.[3][4] His title was ensi-g...

 

Indian conglomerate based in New Delhi This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: GMR Group – news · newspapers · books · scholar · JSTOR (September 2021) (Learn how and when to remove this message) GMR GroupIndustryConglomerateFounded1978; 46 years ago (1978)FounderGrandhi Mallikarjun...

 

Questa voce o sezione sull'argomento gruppi musicali tedeschi non cita le fonti necessarie o quelle presenti sono insufficienti. Puoi migliorare questa voce aggiungendo citazioni da fonti attendibili secondo le linee guida sull'uso delle fonti. Guano ApesI Guano Apes in concerto al Bospop (2009) Paese d'origine Germania GenereRock alternativo[1]Nu metal[2] Periodo di attività musicale1993 – 20042009 – in attività Album pubblicati8 ...

Kenapa Gue?Genre Cerita seru Drama Skenario Baskoro Adi Wuryanto Nicholas Raven Jordy Josua Marcellinus Citra SutradaraDom DharmoPemeran Agnes Naomi Abidzar Al Ghifari Omara Esteghlal Aisyah Aqilah Susan Sameh Lagu penutupStrangers to Dark oleh Random BrothersNegara asalIndonesiaBahasa asliBahasa IndonesiaJmlh. musim1Jmlh. episode6ProduksiProduser eksekutif Deepak Chugani Dilip Chugani Sanjeev Bhalla Monika Rudijono Tina Arwin Produser Chetan A. Samtani Nisha A. Samtani Tia Hendani Dian Lasv...

 

Les ministres des relations internationales et de la coopération d'Afrique du Sud (anciennement Affaires étrangères jusqu'en 2009) sont compétents pour tout ce qui concerne les relations diplomatiques de l'Afrique du Sud avec les pays tiers. La fonction fut instituée sous le mandat de James Barry Hertzog. Jusqu'en 1955, elle était assumée par le premier ministre en titre. Liste des ministres sud-africains des Affaires étrangères # Nom du ministre Visuel période parti 1. James Barry ...

 

Subject of two paintings by El Greco Allegory of the Camaldolese OrderSpanish: Alegoría de la Orden de los CamaldulensesArtistEl GrecoYearca. 1600Mediumoil on canvasDimensions124 x 90 cm (48.8 x 35.4 in)LocationInstituto Valencia of Don Juan, Madrid, Spain Allegory of the Camaldolese Order is a composition by El Greco and his workshop that survives in two paintings, one at the Instituto Valencia de Don Juan in Madrid and the other at the Museo del Patriarca in Valencia.[1] The painti...

Forest in Wisconsin, United States Abraham's WoodsAbraham's Woods in April 2012Map of WisconsinShow map of WisconsinAbraham's Woods (the United States)Show map of the United StatesLocationGreen County, WisconsinCoordinates42°40′58″N 89°29′02″W / 42.68278°N 89.48389°W / 42.68278; -89.48389Area40 acres (16 ha)Governing bodyUniversity of Wisconsin-Madison U.S. National Natural LandmarkDesignated1973 Abraham's Woods is a 40-acre (16 ha) forest in...

 

土库曼斯坦总统土库曼斯坦国徽土库曼斯坦总统旗現任谢尔达尔·别尔德穆哈梅多夫自2022年3月19日官邸阿什哈巴德总统府(Oguzkhan Presidential Palace)機關所在地阿什哈巴德任命者直接选举任期7年,可连选连任首任萨帕尔穆拉特·尼亚佐夫设立1991年10月27日 土库曼斯坦土库曼斯坦政府与政治 国家政府 土库曼斯坦宪法 国旗 国徽 国歌 立法機關(英语:National Council of Turkmenistan) ...

 

2013 Israel–Lebanon border clashBlue Line between Israel and LebanonDateDecember 15–16, 2013LocationRosh Hanikra, IsraelResult Fighting subsided Rogue Lebanese marksmen detainedBelligerents  Israel  LebanonUnits involved Israeli Defence Force Lebanese Armed ForcesCasualties and losses 1 soldier killed 1 jeep damaged[1] 1 soldier wounded The Hanikra border clash was the shooting death of an Israeli soldier and subsequent counter-attack that ensued, wounding a Lebanese sol...

MPEG-7 is a multimedia content description standard. It was standardized in ISO/IEC 15938 (Multimedia content description interface).[1][2][3][4] This description will be associated with the content itself, to allow fast and efficient searching for material that is of interest to the user. MPEG-7 is formally called Multimedia Content Description Interface. Thus, it is not a standard which deals with the actual encoding of moving pictures and audio, like MPEG-1,...

 

State of matter Top: Lightning and neon lights are commonplace generators of plasma. Center left: A plasma globe, illustrating some of the more complex plasma phenomena, including filamentation. Center right: A plasma trail from the Space Shuttle Atlantis during re-entry into Earth's atmosphere, as seen from the International Space Station. Bottom left: A fire in a fire pit; fires may produce plasma if hot enough. Bottom right: The Sun's corona as seen from a solar eclipse in France. Plasma (...

 

العلاقات الكويتية النيجرية الكويت النيجر   الكويت   النيجر تعديل مصدري - تعديل   العلاقات الكويتية النيجرية هي العلاقات الثنائية التي تجمع بين الكويت والنيجر.[1][2][3][4][5] مقارنة بين البلدين هذه مقارنة عامة ومرجعية للدولتين: وجه المقارنة الك�...

Politics of Denmark Constitution Fundamental laws Act of Succession Freedom of Speech Freedom of the Press The Crown Monarch Frederik X Crown Prince Christian Royal family Privy Council Purveyors to the Royal Court The unity of the Realm Denmark proper Faroe Islands Greenland Executive Government Frederiksen II Prime Minister (list) Mette Frederiksen Government Offices Ministries High Commissioners Faroe Islands Greenland Legislature Folketinget (parliament) Speaker: Søren Gade Members Judic...

 

Japanese novel series This article uses bare URLs, which are uninformative and vulnerable to link rot. Please consider converting them to full citations to ensure the article remains verifiable and maintains a consistent citation style. Several templates and tools are available to assist in formatting, such as reFill (documentation) and Citation bot (documentation). (August 2022) (Learn how and when to remove this message) Red Data GirlCover of the first novel volumeRDG レッドデータガ�...

 

Si ce bandeau n'est plus pertinent, retirez-le. Cliquez ici pour en savoir plus. Certaines informations figurant dans cet article ou cette section devraient être mieux reliées aux sources mentionnées dans les sections « Bibliographie », « Sources » ou « Liens externes » (novembre 2019). Vous pouvez améliorer la vérifiabilité en associant ces informations à des références à l'aide d'appels de notes. Pour les articles homonymes, voir Bataille de Sai...

Este artículo trata sobre el supuesto planeta ubicado en el sistema solar exterior. Para el planeta descrito por Percival Lowell en 1906, véase Planeta X. No debe confundirse con Nibiru. Planeta Nueve Representación artística del Planeta Nueve como un gigante de hielo eclipsando el centro de la Vía Láctea, con un sol en forma de estrella en la distancia.[1]​ La órbita de Neptuno se muestra como una pequeña elipse alrededor del Sol.DescubrimientoDescubridor Konstantin BatyginFech...

 

SKE48国籍 日本出道作品《堅強之勇者》出道日期2008年7月30日唱片公司avex trax經紀公司PYTHAGORAS PROMOTION(日语:ピタゴラス・プロモーション)(2008年夏-2011年10月31日) → AKS(2011年11月1日-2019年2月28日) → Zest(2019年3月1日-)現任成員(請參照成員)過往成員(請參照前成員)相關團體AKB48SDN48NMB48HKT48JKT48AKB48 Team TPNGT48STU48MNL48BNK48AKB48 Team SHSGO48CGM48DEL48MUB48官方網站www...