<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Guest Network Password in Wireless</title>
    <link>https://community.cisco.com/t5/wireless/guest-network-password/m-p/5504083#M302253</link>
    <description>&lt;P&gt;thanks for the code for the API, saving a lot of work doing it this way.&lt;/P&gt;</description>
    <pubDate>Wed, 03 Jul 2024 23:21:34 GMT</pubDate>
    <dc:creator>pavement</dc:creator>
    <dc:date>2024-07-03T23:21:34Z</dc:date>
    <item>
      <title>Guest Network Password</title>
      <link>https://community.cisco.com/t5/wireless/guest-network-password/m-p/5504079#M302249</link>
      <description>&lt;P&gt;Is there a way to change the password to the Guest WIfi for 24 networks without having to go into each network and change it one by one.  Looking for an automated way to change all at one time.&lt;/P&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;</description>
      <pubDate>Mon, 01 Jul 2024 15:22:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/guest-network-password/m-p/5504079#M302249</guid>
      <dc:creator>scook@hamilton.k12.nj.us</dc:creator>
      <dc:date>2024-07-01T15:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: Guest Network Password</title>
      <link>https://community.cisco.com/t5/wireless/guest-network-password/m-p/5504080#M302250</link>
      <description>&lt;P&gt;Via the API or if the config is 100% identical you might be able to use templates. Those are the only 2 options. &lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2024 15:35:11 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/guest-network-password/m-p/5504080#M302250</guid>
      <dc:creator>Raphael_L</dc:creator>
      <dc:date>2024-07-01T15:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: Guest Network Password</title>
      <link>https://community.cisco.com/t5/wireless/guest-network-password/m-p/5504081#M302251</link>
      <description>&lt;P&gt;Using the API you can use this,&lt;/P&gt;&lt;PRE class="lia-code-sample language-markup"&gt;&lt;CODE&gt;#! /usr/bin/env python3

import meraki

def main():
    dashboard = meraki.DashboardAPI(
        suppress_logging=True
    )

    OrgId = str(input("Organization ID: "))
    SsidName = str(input("Target SSID: "))
    NewPsk = str(input("New Psk: "))
    
    Networks = dashboard.organizations.getOrganizationNetworks(OrgId)

    Targets = {}
    for network in Networks:
        Ssids = dashboard.wireless.getNetworkWirelessSsids(network['id'])
        for Ssid in Ssids:
            if Ssid['name'] == SsidName:
                Targets.append({
                    'name': network['name'],
                    'networkId': network['id'],
                    'SsidNumber': Ssid['number']
                })

    # Update PSK
    for target in Targets:
        print("Updating",network['name'])
        response = dashboard.wireless.updateNetworkWirelessSsid(
            target['networkId'], target['SsidNumber'],
            psk=NewPsk
        )
    print("Done")

if __name__ == "__main__":
    main()&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 01 Jul 2024 17:11:42 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/guest-network-password/m-p/5504081#M302251</guid>
      <dc:creator>Rasmus Hoffmann Birkelund</dc:creator>
      <dc:date>2024-07-01T17:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: Guest Network Password</title>
      <link>https://community.cisco.com/t5/wireless/guest-network-password/m-p/5504082#M302252</link>
      <description>&lt;P&gt;Assuming you don't have every network templated, the API is definitely the way to do it.&lt;/P&gt;&lt;P&gt;With that said, you might be better off looking at an integration such as SplashAccess, Cloudi-Fi or Cloud4Wi (to name a few) to manage that kind of thing automatically.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2024 01:48:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/guest-network-password/m-p/5504082#M302252</guid>
      <dc:creator>Brash</dc:creator>
      <dc:date>2024-07-02T01:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Guest Network Password</title>
      <link>https://community.cisco.com/t5/wireless/guest-network-password/m-p/5504083#M302253</link>
      <description>&lt;P&gt;thanks for the code for the API, saving a lot of work doing it this way.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 23:21:34 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/guest-network-password/m-p/5504083#M302253</guid>
      <dc:creator>pavement</dc:creator>
      <dc:date>2024-07-03T23:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: Guest Network Password</title>
      <link>https://community.cisco.com/t5/wireless/guest-network-password/m-p/5504084#M302254</link>
      <description>&lt;P&gt;Thank you for the reply.  What if I am using Postman, how would you get all the networks to show and the guest SSID's?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2024 17:43:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/guest-network-password/m-p/5504084#M302254</guid>
      <dc:creator>scook@hamilton.k12.nj.us</dc:creator>
      <dc:date>2024-07-09T17:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: Guest Network Password</title>
      <link>https://community.cisco.com/t5/wireless/guest-network-password/m-p/5504085#M302255</link>
      <description>&lt;P&gt;I'm not that versed in Postman, so unfortunately I can't say. However, I seem to recall there are some looping functionality in Postman, but I'm not sure. You're best is to look at some of the guides and documentation for Postman.&lt;/P&gt;</description>
      <pubDate>Sun, 14 Jul 2024 20:46:32 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/guest-network-password/m-p/5504085#M302255</guid>
      <dc:creator>Rasmus Hoffmann Birkelund</dc:creator>
      <dc:date>2024-07-14T20:46:32Z</dc:date>
    </item>
  </channel>
</rss>

